Shopify / hydrogen

Hydrogen lets you build faster headless storefronts in less time, on Shopify.
https://hydrogen.shop
MIT License
1.19k stars 241 forks source link

Avoid inlining small assets to fix CSP #2006

Closed frandiox closed 1 month ago

frandiox commented 1 month ago

Vite inlines imported small assets (<4kb) by default. This creates issues with our favicon and the default CSP value, which does not allow img-src data:.

We could:

I'm opting for the last option here since it works for all the links in the app and doesn't introduce new unknown syntax for users. Happy to change it though if something else makes more sense.

We could add this option to our CLI / plugins but I think it's better if the user has it in the config directly?