feat: Implement Content Security Policy and disable Vite HMR overlay.

This commit is contained in:
Van Leemput Dayron
2026-02-06 17:29:21 +01:00
parent bf87b9c218
commit 274ea73e05
2 changed files with 7 additions and 0 deletions

View File

@@ -4,4 +4,9 @@ import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
hmr: {
overlay: false
}
}
})