mirror of
https://github.com/JOYCEQL/magic-resume.git
synced 2026-07-03 14:07:11 +02:00
21 lines
433 B
TypeScript
21 lines
433 B
TypeScript
import { defineConfig } from "vite";
|
|
import { tanstackStart } from "@tanstack/react-start/plugin/vite";
|
|
import viteReact from "@vitejs/plugin-react";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
port: 3000
|
|
},
|
|
plugins: [
|
|
tsconfigPaths(),
|
|
tanstackStart({
|
|
srcDirectory: "src",
|
|
router: {
|
|
routesDirectory: "routes"
|
|
}
|
|
}),
|
|
viteReact()
|
|
]
|
|
});
|