chore: upgrade spacetimedb and stabilize dev startup

This commit is contained in:
2026-05-29 21:02:54 +00:00
parent 6e74cf5add
commit 40ef89aeb5
269 changed files with 2038 additions and 2124 deletions

View File

@@ -16,6 +16,14 @@ export default defineConfig(({mode}) => {
env.GENARRATIVE_API_TARGET ||
`http://127.0.0.1:${env.GENARRATIVE_API_PORT || '3100'}`;
const base = env.ADMIN_WEB_BASE || '/admin/';
const ignoredWatchGlobs = [
'**/.git/**',
'**/.worktrees/**',
'**/dist/**',
'**/node_modules/**',
'**/server-rs/**',
'**/server-rs/target/**',
];
return {
root: adminWebRoot,
@@ -23,6 +31,9 @@ export default defineConfig(({mode}) => {
base,
plugins: [react()],
server: {
watch: {
ignored: ignoredWatchGlobs,
},
proxy: {
'/admin/api': {
target: apiTarget,