This commit is contained in:
2026-01-11 08:19:27 +01:00
parent f2732b36f2
commit bdd3e30f14
17 changed files with 3088 additions and 23 deletions

13
webapp/vite.config.js Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'vite';
import path from 'path';
// Allow Vite dev server to read files from parent folder so we can import
// the existing `src` code without copying it.
export default defineConfig({
server: {
fs: {
// allow access to parent workspace root
allow: [path.resolve(__dirname, '..')]
}
}
});