我已经创建了一个Chrome扩展程序,在使用Webpack进行构建时,我需要将清单文件从项目的根目录复制到dist文件夹中。
我有WebpackCopyPlugin。
运行npm build
时,我没有从debug:"debug"
选项获得调试信息,并且该文件也未复制。
简化的目录结构如下:
/
manifest.json
/dist
我想要:
/
manifest.json
/dist
manifest.json
在我的webpack.config.js中,我的构建配置中包含以下内容:
build:
plugins: [
new CopyWebpackPlugin([
{
from:"manifest.json",
to:"dist",
toType:"file",
force: true,
}
],
{
debug:'debug',
copyUnmodified: true
}
)
],