Nuxt Icon causing CSP errors
Heya, I have a pretty strict CSP but I am getting style-src errors caused by Nuxt Icon:
Looking at the causing code its caused by a component called "NuxtIconCss" which has a function to append something to the document head
2 Replies
Hi @Just Simeon. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
----------------------
I understand you're experiencing CSP errors with Nuxt Icon due to inline styles being blocked by your Content Security Policy.
This is a known issue with Nuxt Icon and similar components that dynamically inject styles. The error occurs because Nuxt Icon is adding inline styles to the document head without respecting your CSP nonce.
Based on the knowledge sources, there are a few approaches to solve this:
1. Add the
crossorigin
attribute to stylesheets:
Recent Nuxt updates have added support for the crossorigin
attribute on stylesheet links in the HTML renderer, which can help with CSP issues GitHub PR #29138.
2. Use the nonce
attribute:
Nuxt Image (which follows similar patterns to Nuxt Icon) supports passing a nonce attribute to components:
This approach is documented for NuxtImg in the Nuxt Image documentation, and may work similarly for NuxtIcon.
3. Use client-only wrapper:
In some cases, wrapping problematic components in a <client-only>
tag can help avoid SSR-related CSP issues, as shown in one of the examples with Leaflet:
4. Adjust your CSP policy:
While not ideal from a security perspective, you could add the 'unsafe-inline' directive to your style-src CSP policy, or add the specific hash mentioned in your error message.
If you're using the nuxt-security module, make sure it's properly configured to provide nonces for inline styles. The module should be able to help manage CSP headers and nonces automatically.
Remember that the most secure approach is to use nonces rather than allowing all inline styles with 'unsafe-inline'.
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------<@294593079812292609> Kapa.ai is still learning and improving, please let me know how I did by reacting below.