mirror of
https://github.com/lumehq/lume.git
synced 2025-03-17 21:32:32 +01:00
17 lines
410 B
TypeScript
17 lines
410 B
TypeScript
import { TanStackRouterVite } from "@tanstack/router-vite-plugin";
|
|
import react from "@vitejs/plugin-react-swc";
|
|
import { defineConfig } from "vite";
|
|
import viteTsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), viteTsconfigPaths(), TanStackRouterVite()],
|
|
build: {
|
|
outDir: "../../dist",
|
|
},
|
|
server: {
|
|
strictPort: true,
|
|
port: 3000,
|
|
},
|
|
clearScreen: false,
|
|
});
|