1.0.0 RELEASE [MAJOR] dev -> main

This commit is contained in:
/home/neo
2026-03-31 20:56:16 +02:00
committed by GitHub
parent d192387382
commit 7f5d513c46
217 changed files with 11647 additions and 5718 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/**"],
},
},
})