-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
icejs 禁用运行时能力后使用约定式路由能力 #3322
Comments
需求
{
"disableRuntime": true
}
方案
if (userConfig.disableRuntime) {
return [
'build-plugin-react-app',
'build-plugin-ice-mpa',
'build-plugin-ice-router'
];
}
其他 |
This was referenced Jul 16, 2020
disableRuntime 后 |
4 tasks
Merged
结论:不单独开放这个能力,直接使用最新版 icejs。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
背景
icejs 的运行时能力屏蔽了应用入口相关的执行逻辑,历史项目可以通过
disableRuntime
快速升级到 icejs。但历史项目类型中存在使用基础插件搭配约定式路由能力的场景。期望 icejs 在关闭运行时能力的同时,可以提供约定式路由开启使用的方式。
The text was updated successfully, but these errors were encountered: