-
Choerodon平台版本:0.6.0
-
问题描述:
1、执行 npm install choerodon-front-boot -S
2、 创建config.js
3、执行 choerodon-front-boot start --config config.js 报错 -
报错信息(请尽量使用代码块的形式展现):
这个是引用choerodon-front-boot
npm 包以后,在实际项目下执行的命令
choerodon-front-boot
在前端中更多承担的是一个脚手架的作用,包含了一些开箱即用的功能。可以使用它来编译,打包,启动前端项目。
您好,补充楼上,您可以在项目依赖中修改scripts命令来运行choerodon-front-boot包。
例如:
"scripts": {
"start": "choerodon-front-boot start --config ../config.js",
}
我现在在尝试进行一个多模块的前端服务开发。(试图把iam这个服务加进来)。
我查看了github上面 choerodon-front这个项目 。
我使用了 git clone https://github.com/choerodon/choerodon-front --recursive 。
之后在choerodon-front目录下 依次 执行了 npm install 和 npm start .
可以顺利进入到页面中,但点击菜单的页面都是404.也就是子模块都没有加载出来。请问需要怎么操作