Allow blob: in CSP so image upload previews work (#915)

This commit is contained in:
Matthew Bunday
2024-08-22 12:35:44 -04:00
committed by GitHub
parent a7c940fc92
commit cbd46d81c3

View File

@@ -28,7 +28,7 @@ export function middleware(req: NextRequest) {
// Open image src
const cspHeader = `
img-src 'self' https: data:;
img-src 'self' https: data: blob:;
media-src 'self' https: data: blob:;
`;