From 1dae7cf80ab07c45f8937957f684e870e56eff59 Mon Sep 17 00:00:00 2001 From: jaem1n207 Date: Thu, 3 Oct 2024 18:14:02 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=BD=98=ED=85=90=EC=B8=A0=20=EB=B3=B4?= =?UTF-8?q?=EC=95=88=20=EC=A0=95=EC=B1=85=20=EC=9C=84=EB=B0=98=ED=95=98?= =?UTF-8?q?=EB=8A=94=20=EC=BD=94=EB=93=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/manifest.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/manifest.ts b/src/manifest.ts index 71927e0..68cb3da 100644 --- a/src/manifest.ts +++ b/src/manifest.ts @@ -51,7 +51,8 @@ export async function getManifest(): Promise { content_security_policy: { extension_pages: isDev ? // this is required on dev for Vite script to load - `script-src 'self' http://localhost:${port}; object-src 'self'` + // eslint-disable-next-line no-useless-escape + `script-src \'self\' http://localhost:${port}; object-src \'self\'` : "script-src 'self'; object-src 'self'", }, };