mirror of
https://github.com/LCE-Hub/LCE-Emerald-Launcher.git
synced 2026-09-24 09:03:44 +00:00
18 lines
469 B
TypeScript
18 lines
469 B
TypeScript
import { defineConfig } from "vite";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()],
|
|
define: {
|
|
__BUILD_DATE__: JSON.stringify(new Date().toISOString()),
|
|
},
|
|
server: {
|
|
port: 1420,
|
|
strictPort: true,
|
|
watch: {
|
|
ignored: ["**/src-tauri/**", "**/ignore"], //neo: i use ./ignore myself for instances and other git repos i need
|
|
},
|
|
},
|
|
});
|