码迷,mamicode.com
首页 > Web开发 > 详细

webpack-dev-server和html-webpack-plugin的简单使用

时间:2019-07-10 11:06:15      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:exports   脚本   filename   new   端口   export   pre   server   host   

安装这两个包

使用npm安装 webpack-dev-server html-webpack-plugin

webpack.config.js 配置文件添加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  // 添加插件
    ],
    ...
}
    

webpack-dev-server 命令,在package文件中添加脚本命令。

--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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!