标签:exports 脚本 filename new 端口 export pre server host
使用npm安装 webpack-dev-server html-webpack-plugin
...
const HtmlWebpackPlugin = require('html-webpack-plugin');
const htmlWebpackPlugin = new HtmlWebpackPlugin({
template: 'path/to/file.html', // 输入文件
filename: 'path/to/file.html', // 输出文件
});
module.exports = {
...
plugins: [
htmlWebpackPlugin // 添加插件
],
...
}
--host x.x.x.x // 启动的ip地址
--port 3000 // 监听的端口号
webpack-dev-server和html-webpack-plugin的简单使用
标签:exports 脚本 filename new 端口 export pre server host
原文地址:https://www.cnblogs.com/zhangyahan/p/11162092.html