我有一个使用 node.js/express 服务器来服务 AngularJS SPA 的项目。
该项目包含许多不同的应用程序,它们共享一些公共资源。快递服务器被配置为服务来自不同位置的资产:
server.use('/assets', express.static(path.join(rootDir, 'myApp/assets')));
server.use('/images', express.static(path.join(rootDir, 'components/common/images')));
server.use(express.static(path.join(rootDir, 'components')));
我正在尝试更改应用程序以使用 WebStorm 的 liveEdit 功能,但在配置调试器时遇到困难。
这是我到目前为止所做的:
- 安装 chrome 扩展,使其处于活动状态并将端口配置为 9000。
- 使用 url 创建一个新的 Javascript/Debug 配置:http://localhost:9000
- 如上所述为我的 index.html ( http://localhost:9000/index.html : myApp/index.html)、资产、图像、组件等配置远程 URL 。
当我单击新配置的调试按钮时,我只会收到一条消息“此网页不可用”。
我已经阅读了 JetBrains 文档,但没有看到解决方案。