赞
踩
报错:which falls outside of the project src/ directory. Relative imports outside of src/ are not supported.
解决方案:
在config-overrides.js中配置:
- const ModuleScopePlugin = require('react-dev-utils/ModuleScopePlugin');
-
- module.exports = function override(config, env) {
- config.resolve.plugins = config.resolve.plugins.filter(plugin => !(plugin instanceof ModuleScopePlugin));
-
- return config;
- };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。