Arhaam Patvi
Arhaam Patvi
Haha, I've moved to a different tech stack in the last 2years, anyhow as far as I recall my concern was that the placeholder image and the actual image were...
Have there been any developments on this? I would much rather have this coming from the package itself than have to set up some custom config for handling the logs
So i've figured out where the problem is coming from, I'm using [helmet](https://www.npmjs.com/package/helmet), which is adding a few headers that end up blocking the content. Error in console: ```sh Refused...
I've resolved the issue using the following helmet config: ```js app.use(helmet({ contentSecurityPolicy: { directives: { defaultSrc: ["'self'"], scriptSrc: ["'self'", "'unsafe-inline'"], styleSrc: ["'self'", "https://fonts.googleapis.com", "'unsafe-inline'"], fontSrc: ["'self'", "https://fonts.gstatic.com"] } } }));...