fix(sim): allow jsdelivr script under helmet CSP
This commit is contained in:
@@ -43,7 +43,15 @@ app.use('/docs', swaggerUi.serve, swaggerUi.setup(openApiDocument));
|
|||||||
|
|
||||||
app.all('/api/auth/*splat', toNodeHandler(auth));
|
app.all('/api/auth/*splat', toNodeHandler(auth));
|
||||||
|
|
||||||
app.use(helmet());
|
app.use(
|
||||||
|
helmet({
|
||||||
|
contentSecurityPolicy: {
|
||||||
|
directives: {
|
||||||
|
scriptSrc: ["'self'", 'https://cdn.jsdelivr.net'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
);
|
||||||
app.use(
|
app.use(
|
||||||
cors({
|
cors({
|
||||||
origin: trustedOrigins.length > 0 ? trustedOrigins : true,
|
origin: trustedOrigins.length > 0 ? trustedOrigins : true,
|
||||||
|
|||||||
Reference in New Issue
Block a user