Package update and TrainingViewer rendering fixes

This commit is contained in:
2025-06-30 08:22:58 +02:00
parent d5851499cd
commit c33bd95b81
10 changed files with 1180 additions and 591 deletions

View File

@@ -126,6 +126,9 @@ export default defineNuxtConfig({
experimental: {
tasks: true,
},
watchOptions: {
usePolling: true,
},
rollupConfig: {
external: ['bun'],
plugins: [
@@ -181,5 +184,20 @@ export default defineNuxtConfig({
key: fs.readFileSync(path.resolve(__dirname, 'localhost+1-key.pem')).toString('utf-8'),
cert: fs.readFileSync(path.resolve(__dirname, 'localhost+1.pem')).toString('utf-8'),
}
},
devtools: {
enabled: false,
},
vite: {
server: {
watch: {
usePolling: true,
}
}
},
watchers: {
chokidar: {
usePolling: true,
}
}
})