mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 23:51:01 -07:00
Fix CSP
This commit is contained in:
parent
73b2ce6f21
commit
8a6a5cdeb3
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ router.get("/notes/:note", async (ctx, next) => {
|
|||
ctx.set("Cache-Control", "public, max-age=15");
|
||||
ctx.set(
|
||||
"Content-Security-Policy",
|
||||
"default-src 'self' 'unsafe-inline'; img-src '*'; frame-ancestors '*'",
|
||||
"default-src 'self' 'unsafe-inline'; img-src *; frame-ancestors *",
|
||||
);
|
||||
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue