From c609e23adf6530c06f0fef38f7c3583fd0a9465c Mon Sep 17 00:00:00 2001 From: Cooper Larson Date: Mon, 19 Aug 2024 09:47:10 -0600 Subject: [PATCH] fix security policy --- csp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csp.js b/csp.js index cf41327..c83062d 100644 --- a/csp.js +++ b/csp.js @@ -10,7 +10,7 @@ const policies = { ], 'font-src': ["'self'"], 'frame-src': ["'self'"], - 'connect-src': ["'self'", 'https://maps.googleapis.com', 'http://localhost:33000/api/users/me'], + 'connect-src': ["'self'", 'https://maps.googleapis.com', 'http://localhost:33000'], } module.exports = Object.entries(policies)