Refused to load the script because it violates the following Content Security Policy directive: "style-src 'self' 'unsafe-inline'

后端 未结 4 646
梦毁少年i
梦毁少年i 2020-12-30 01:32

I am using MVC6 (asp.net 5) using angular and trying to load scripts from CDN locations when my code is running in release mode, but for some reason the scripts NEVER load.<

4条回答
  •  隐瞒了意图╮
    2020-12-30 02:25

    If you want to workaround the issue, add the following in your application.conf file.

    play.filters.disabled += "play.filters.headers.SecurityHeadersFilter"
    

提交回复
热议问题