最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Chart.js CDN refusing to load - Stack Overflow

programmeradmin1浏览0评论

I'm trying to use Chart.js to load some components, but I don't know why I keep getting this error: Refused to load the script '/[email protected]/dist/chart.min.js' because it violates the following Content Security Policy directive: "script-src 'self'". Note that 'script-src-elem' was not explicitly set, so 'script-src' is used as a fallback.

I have attempted to bypass CSP like this:

app.use((req, res, next) => {
  res.setHeader(
    'Content-Security-Policy',
    "default-src 'self';" +
    "script-src 'self'  'unsafe-inline';" +
    "style-src 'self'  'unsafe-inline';" +
    "img-src 'self' data:;" +
    "font-src 'self' ;" +
    "connect-src 'self' http://localhost:5000"
  );
  next();
});

But, it still fails.

发布评论

评论列表(0)

  1. 暂无评论