chore: add clock middleware

This commit is contained in:
2026-02-28 13:28:46 +01:00
parent f91d4276cc
commit 1f332643a2
5 changed files with 67 additions and 10 deletions
+9 -1
View File
@@ -5,5 +5,13 @@ export default defineConfig({
plugins: [react()],
build: {
chunkSizeWarningLimit: 1000, // Augmenter la limite à 1000 KB
}
},
server: {
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true,
},
},
},
})