具有这种结构的 Angular 项目:
project name:
--/app folder
--/app/index.html
在目录/设置中,我将项目名称设置为内容源,app
将文件夹设置为资源文件夹。URL 设置为:http://localhost:63342/app/index.html
。
我安装了 chrome 插件,但是当我运行调试器时,我看到“404 page not found”消息。
如果我将 url 设置为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 而不是运行应用程序(在我的机器中,它已在主机文件中设置并且工作正常)但是当我尝试设置调试器 url 时,http://local.mycompany.com:63342/angular/index.html
我只是得到了 jetbrains 404 页面。