插件(plugins)
const HtmlWebpackPlugin = require('html-webpack-plugin'); // 通过 npm 安装
const webpack = require('webpack'); // 用于访问内置插件
const config = {
plugins: [
new HtmlWebpackPlugin({template: './src/index.html'})
]
};
module.exports = config;Last updated