我正在尝试在我的开发环境中启动https://github.com/akveo/ng2-admin项目,但我遇到了一个问题。ng2-admin 项目是在 Visual Studio 代码中开发的,带有以下 launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Chrome against localhost, with sourcemaps",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000/*",
"runtimeArgs": [
"--disable-web-security",
"--user-data-dir",
"--remote-debugging-port=9222"
],
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
}
//, ...
]
}
由于我们公司的限制,我不能使用 chrome 浏览器。所以我想调整 launch.json 以使用 lite-server 启动项目(如在 Angular 2 教程中:https ://github.com/angular/quickstart )。我试图修改package.json
,launch.json
但最终得到了无穷无尽的错误列表。你能解释一下如何使用 lite-server 启动 ng2-admin 吗?