LCE-Emerald-Launcher/vite.config.ts
KayJann c94db91238 Making the source code public
Finally ! here's the source code
2026-03-12 13:52:32 +01:00

18 lines
406 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
clearScreen: false,
optimizeDeps: {
entries: ['index.html'],
exclude: ['bin', 'game', 'src-tauri']
},
server: {
port: 1420,
strictPort: true,
watch: {
ignored: ["**/src-tauri/**", "**/bin/**", "**/game/**", "**/*.app/**"],
}
},
});