From c5fc1cedd774b1361badaab0779328295f1503aa Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Tue, 24 Feb 2026 16:57:18 -0700 Subject: [PATCH] Fuck it... right now we don't need CSP. I do nothing useful on this site. --- astro.config.mjs | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index deb4cfe..624d983 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -13,23 +13,6 @@ export default defineConfig({ }, integrations: [vue()], - security: { - checkOrigin: true, - - csp: isDev - ? undefined - : { - algorithm: "SHA-512", - scriptDirective: { - resources: ["'self'", "https://analytics.atri.dad"], - }, - directives: [ - "connect-src 'self' https://analytics.atri.dad", - "child-src 'self' blob:", - ], - }, - }, - adapter: node({ mode: "standalone", }),