我正在开发Spring Boot应用程序。我的AngularJS应用位于src / main / resources / static文件夹中。我想与第三方应用程序进行交互。这需要
问题是
在index.html中添加了外部JS。但是在加载时会出现以下错误
Refused to load the script because it violates the following Content Security Policy directive: "script-src 'self' 'unsafe-inline'".
添加了<meta http-equiv="Content-Security-Policy" content="script-src <cdn-domain> 'self';">
,但问题仍然存在。
请建议可以做什么。