vue,Refused to load the image 'http://localhost:8080/favicon.ico' because it violates the followi...

早上一打开vue项目,在chrome上一打开,页面显示的是Cannot GET,就出现了这个报错。


大概意思是:

拒绝加载图像'http:// localhost:8080 / favicon.ico',因为它违反了以下内容安全策略指令:“default-src'none'”。请注意,'img-src'未明确设置,因此'default-src'用作后备。

我npm run build的时候要修改config/index.js中assetsSubDirectory:'./'

我把两个assetsSubDirectory都修改为  ./   这时候npm run devvue项目就Cannot GET,

这时候我再修改回来

```

dev: {

// Paths

  assetsSubDirectory:'static',

  assetsPublicPath:'/',

  proxyTable: {},

...................................

```

就好了

你可能感兴趣的:(vue,Refused to load the image 'http://localhost:8080/favicon.ico' because it violates the followi...)