CSP (Content Secure Policy)
Answered
Havana posted this in #help-forum
HavanaOP
Is CSP handled by nextJS or should I build my own CSP handler?
Answered by B33fb0n3
if you want to directly configure your CSP you can do that via the nextjs config: https://nextjs.org/docs/app/building-your-application/configuring/content-security-policy#without-nonces
Some other sources are restricted/allowed by default. For example when you try to use images from an external url, you need to especially add them inside the images
Some other sources are restricted/allowed by default. For example when you try to use images from an external url, you need to especially add them inside the images
4 Replies
if you want to directly configure your CSP you can do that via the nextjs config: https://nextjs.org/docs/app/building-your-application/configuring/content-security-policy#without-nonces
Some other sources are restricted/allowed by default. For example when you try to use images from an external url, you need to especially add them inside the images
Some other sources are restricted/allowed by default. For example when you try to use images from an external url, you need to especially add them inside the images
Answer
@Havana solved?
HavanaOP
Yes I think so
happy to help