webpackでhtml等の静的ファイルをコピーする
webpack: 5~
htmlとか画像とかwebpackでビルドするときについでにコピーしたい。
必要なものの追加
code:sh
npm i -D copy-webpack-plugin @types/copy-webpack-plugin
TS環境じゃなければ@types/copy-webpack-pluginは要らない。
code:webpack.config.ts
略
plugins: [
new CopyWebpackPlugin({
patterns: [
{ from: 'images', to: 'images' },
{ from: 'index.html', to: 'index.html' },
]
})
]
略
こんなのを追加