具有这种结构的角度项目:
project name:
--/app folder
--/app/index.html
在目录/设置中,我将项目名称设置为内容源,将app
文件夹设置为资源文件夹。该网址设置为:http://localhost:63342/app/index.html
。
我安装了chrome插件但是当我运行调试器时,我看到“找不到404页面”消息。
如果我将网址设置为http://localhost:63342/angular/index.html
(选择index.html文件),我会得到页面,但没有任何资源,有这种错误(例如,图片,模板和其他)。
Failed to load resource: the server responded with a status of 404 (Not Found) http://localhost:63342/img/home_page_1024.jpg
Failed to load resource: the server responded with a status of 404 (Not Found)
所有这些都应该在app
文件夹下但在调试页面中丢失(我运行的常规页面工作正常..)
我听说有一些“插件配置”来覆盖CORS。但我不确定是什么
另一个问题是我需要应用程序从local.mycompany.com
而不是localhost运行(在我的机器中它在hosts文件中设置并且工作正常)但是当我尝试将调试器URL设置为http://local.mycompany.com:63342/angular/index.html
时刚刚获得jetbrains 404页面。