Initial commit: courtlab tactical board with team management and MP4 export

This commit is contained in:
2026-09-08 12:22:20 +09:00
commit d2e39a452e
43 changed files with 7812 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { loadConfig } from './server/config.js';
import { defineConfig } from 'vite';
const config = await loadConfig();
export default defineConfig({
server: {
host: '0.0.0.0',
port: 5173,
proxy: { '/api': `http://127.0.0.1:${config.server.port}` },
// Keep Vite's standard secret-file protections and add the JSON config variants.
fs: { deny: ['.env', '.env.*', '*.{crt,pem}', '**/.git/**', '.config.json', '.config.json.*', '**/.config.json', '**/.config.json.*'] },
},
});