Allow blob: scheme (#817)
This commit is contained in:
parent
d6465162bd
commit
bff9342272
|
@ -25,7 +25,7 @@ export function middleware (request) {
|
||||||
"default-src 'none'",
|
"default-src 'none'",
|
||||||
"font-src 'self' a.stacker.news",
|
"font-src 'self' a.stacker.news",
|
||||||
// we want to load images from everywhere but we can limit to HTTPS at least
|
// we want to load images from everywhere but we can limit to HTTPS at least
|
||||||
"img-src 'self' a.stacker.news m.stacker.news https: data:",
|
"img-src 'self' a.stacker.news m.stacker.news https: data: blob:",
|
||||||
// Using nonces and strict-dynamic deploys a strict CSP.
|
// Using nonces and strict-dynamic deploys a strict CSP.
|
||||||
// see https://cheatsheetseries.owasp.org/cheatsheets/Content_Security_Policy_Cheat_Sheet.html#strict-policy.
|
// see https://cheatsheetseries.owasp.org/cheatsheets/Content_Security_Policy_Cheat_Sheet.html#strict-policy.
|
||||||
// Old browsers will ignore nonce and strict-dynamic
|
// Old browsers will ignore nonce and strict-dynamic
|
||||||
|
|
Loading…
Reference in New Issue