我的React Application从今天开始返回此错误:
拒绝应用内联样式,因为它违反了以下“内容安全策略”指令:“ style-src'self'”。要启用内联执行,要么使用关键字(unsafe-inline),要么使用哈希('sha256-3dQYuWNjYbcHqe4TYkl7xf9jytstrjZWLNUtcbU8uYg ='),或者使用随机数(nonce('nonce -...'))。
我将此元标记添加到了index.html
<meta http-equiv="Content-Security-Policy" content="default-src https:; script-src https: 'unsafe-inline'; style-src https: 'unsafe-inline';">
,但再次出现相同问题。我该如何解决?
预先感谢
在webpac配置中也没有任何作用
devServer: {
contentBase: path.resolve('src/www'),
publicPath: '/',
port: 8080,
quiet: false,
hot: true,
historyApiFallback: true,
inline: true
},
同一问题。