Strengthened CRF, added more vue, and removed viewtransitions
All checks were successful
Docker Deploy / build-and-push (push) Successful in 4m42s

This commit is contained in:
2026-02-12 16:19:59 -07:00
parent e5c5d68739
commit 3e17e58c9a
15 changed files with 282 additions and 145 deletions

View File

@@ -9,7 +9,13 @@ export default defineConfig({
output: "server",
integrations: [vue()],
security: {
csp: process.env.NODE_ENV === "production",
csp: process.env.NODE_ENV === "production"
? {
scriptDirective: {
strictDynamic: true,
},
}
: false,
},
vite: {
plugins: [tailwindcss()],