Webpack html-webpack-plugin 不工作
Webpack html-webpack-plugin is not working
当我 运行 命令 npm run build
时,我希望 index.html
应该被复制到 dist
中,就像在本教程 10:00 中一样:
https://www.youtube.com/watch?v=TzdEpgONurw&t=602s
但是没有任何反应,没有警告也没有错误。
这是配置:
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.export ={
mode: 'development',
module: {
rules: [
{
test: /.html$/,
use: [
{
loader: 'html-loader',
options: {minimize: true}
}
]
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: './src/index.html',
filename:'./index.html'
}),
],
}
正如 Grzegorz T 所建议的那样,这是一个错字。将 module.export
更正为 module.exports
以解决问题。
当我 运行 命令 npm run build
时,我希望 index.html
应该被复制到 dist
中,就像在本教程 10:00 中一样:
https://www.youtube.com/watch?v=TzdEpgONurw&t=602s
但是没有任何反应,没有警告也没有错误。 这是配置:
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.export ={
mode: 'development',
module: {
rules: [
{
test: /.html$/,
use: [
{
loader: 'html-loader',
options: {minimize: true}
}
]
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: './src/index.html',
filename:'./index.html'
}),
],
}
正如 Grzegorz T 所建议的那样,这是一个错字。将 module.export
更正为 module.exports
以解决问题。