patches v1.2.2 #6

Merged
jkeffects merged 6 commits from develop into main 2025-03-12 10:16:03 +00:00
Showing only changes of commit 39492403ad - Show all commits

View file

@ -1,13 +1,26 @@
export default [
'strapi::logger',
'strapi::errors',
'strapi::security',
'strapi::cors',
'strapi::poweredBy',
'strapi::query',
'strapi::body',
'strapi::session',
'strapi::favicon',
'strapi::public',
'global::deepPopulate'
"strapi::logger",
"strapi::errors",
// "strapi::security",
{
name: "strapi::security",
config: {
contentSecurityPolicy: {
useDefaults: true,
directives: {
"script-src": ["'self'", "https:", "http:"],
"frame-src": ["'self'", "https:", "http:"],
"frame-ancestors": ["'self'", "https:", "http:"],
},
},
},
},
"strapi::cors",
"strapi::poweredBy",
"strapi::query",
"strapi::body",
"strapi::session",
"strapi::favicon",
"strapi::public",
"global::deepPopulate",
];