From 1a0e83365af284cb914d7cfa0e28457b9e461324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20S=C3=A1nchez?= Date: Thu, 12 Oct 2023 16:57:52 +0200 Subject: [PATCH] fix(pwa): add manifest-src to CSP (#2428) --- nuxt.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/nuxt.config.ts b/nuxt.config.ts index 30c00b5d..b0be4b6f 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -239,6 +239,7 @@ export default defineNuxtConfig({ 'form-action': ['\'none\''], 'frame-ancestors': ['\'none\''], 'img-src': ['\'self\'', 'https:', 'http:', 'data:', 'blob:'], + 'manifest-src': ['\'self\''], 'media-src': ['\'self\'', 'https:', 'http:'], 'object-src': ['\'none\''], 'script-src': ['\'self\'', '\'unsafe-inline\'', '\'wasm-unsafe-eval\''],