Initial commit

This commit is contained in:
Ubuntu
2026-03-01 13:23:49 +00:00
commit a8e52093aa
1485 changed files with 453467 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
root: 'src/frontend',
base: '/',
build: {
outDir: '../../../dist',
emptyOutDir: true
},
server: {
proxy: {
'/api': 'http://127.0.0.1:3456'
}
}
});