first commit

This commit is contained in:
meninjar
2026-08-05 01:30:50 +00:00
commit afb0d434bf
26 changed files with 8283 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
port: 5880,
host: true,
allowedHosts: true,
watch: {
usePolling: true,
interval: 500,
ignored: ['**/logs/**', '**/node_modules/**', '**/dist/**', '**/.git/**'],
},
proxy: {
'/api': {
target: 'http://localhost:5880',
changeOrigin: true,
},
},
},
});