revert the revert

This commit is contained in:
neoapps-dev
2026-04-02 16:02:58 +03:00
parent 80bd77c312
commit 535735fcb2
217 changed files with 11898 additions and 5717 deletions
+17 -18
View File
@@ -1,18 +1,17 @@
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/**"],
}
},
});
import { defineConfig } from 'vite'
import tailwindcss from '@tailwindcss/vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [
react(),
tailwindcss(),
],
server: {
port: 1420,
strictPort: true,
watch: {
ignored: ["**/src-tauri/**"],
},
},
})