We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
roadmap.path是FIS配置中最复杂也是比较容易出现问题的配置
如果通过fis.config.set('roadmap.path', [...])的形式设置roadmap.path,则之前的roadmap.path设置会被最新的设置覆盖。
如果通过fis.config.get('roadmap.path').unshift({ reg: .....})进行配置,则可以添加新的配置项。
一般来说,如果roadmap.path的工作不正常,大概有以下几个原因
Tips:
你可以在fis-conf.js中输出roadmap.path来确认当前项目在编译时实际运行的配置
console.log(JSON.stringify(fis.config.get('roadmap.path'), null, 4));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
roadmap.path是FIS配置中最复杂也是比较容易出现问题的配置
如果通过fis.config.set('roadmap.path', [...])的形式设置roadmap.path,则之前的roadmap.path设置会被最新的设置覆盖。
如果通过fis.config.get('roadmap.path').unshift({ reg: .....})进行配置,则可以添加新的配置项。
一般来说,如果roadmap.path的工作不正常,大概有以下几个原因
Tips:
你可以在fis-conf.js中输出roadmap.path来确认当前项目在编译时实际运行的配置
The text was updated successfully, but these errors were encountered: