我使用create-react-app创建的工程,基于webpack4,然后使用customize-cra重写配置。
我想在打包后将打包后的文件拷贝到其他目录,我增加了copy-webpack-plugin插件,如下:
"copy-webpack-plugin": "^4.6.0",
const myPlugin = [
new CopyWebpackPlugin(
[
{
from: path.resolve(__dirname, './build/'),
to: "/Users/xxx/Desktop/static",
force: true
// ignore: ['.*']
}
]
)
]
// 打包配置
const addCustomize = () => config => {
config.devtool = false;
config.plugins = [...config.plugins, ...myPlugin];
return config;
}
module.exports = {
webpack: override(
// 其余webpack设置
addCustomize()
),
};
结果在我的目标文件夹static只有favicon.ico和robots.txt文件,打包后的静态资源并没有拷贝过来,请问是哪里配置的不对?
webpack-copy-plugin不能复制从构建过程中生成的文件
https://segmentfault.com/q/1010000039117146