fix: enable strictPort for vite to prevent CORS error

This commit is contained in:
IvanCodeslol 2025-01-24 23:22:28 +02:00
parent ac3cae6d72
commit f32e7a27ae
No known key found for this signature in database
GPG key ID: A20FA826657B6454

View file

@ -7,4 +7,7 @@ export default defineConfig({
optimizeDeps: { optimizeDeps: {
exclude: [], exclude: [],
}, },
server: {
strictPort: true
}
}); });