我正在开发一个 create-react-app 应用程序,我需要使用 craco 包来添加 webpack 插件:ShebangPlugin。
当我使用 启动服务器时yarn run start
,我的开发服务器starting development server
没有任何错误。
这是我的 craco 配置:
const ShebangPlugin = require('webpack-shebang-plugin');
module.exports = {
reactScriptsVersion: "react-scripts",
webpack: {
plugins: {
add: [new ShebangPlugin()]
},
configure: (webpackConfig, { env, paths }) => { return webpackConfig; }
}
};
这里是我的 package.json :
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject"
},
我不知道发生了什么,有人有想法吗?
谢谢