html-webpack-plugin插件 根据模板生成多页面

2018-06-24 01:50:30来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

1、项目目录结构为:

 

2、webpack.config.js配置文件为:

 

var htmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
    //打包入口
    entry: {
        main: './src/js/main.js',
        a: './src/js/a.js',
        b: './src/js/b.js',
        c: './src/js/c.js'
    },
    //打包后的文件
    output: {
        //不加__dirname 会报错
        path: __dirname + '/dist',
        //注意:使用[name]确保每个文件名都不重复
        filename: 'js/[name]-[chunkhash].js',
        //线上地址配置
        publicPath:'http://cdn.com/'
    },
    plugins: [
        new htmlWebpackPlugin({
            template: 'index.html',
            filename: 'a.html',
            title: 'this is a.html',
            //增加指定的chunks
            chunks:['main','a']
        }),
        new htmlWebpackPlugin({
            template: 'index.html',
            filename: 'b.html',
            title: 'this is b.html',
            //增加指定的chunks
            chunks:['main','b']
        }),
        new htmlWebpackPlugin({
            template: 'index.html',
            filename: 'c.html',
            title: 'this is c.html',
            //增加指定的chunks
            chunks:['main','c']
        })
    ]
}

3、执行命令:

npm run webpack

4.编译:

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:css中伪类/伪元素详解

下一篇:图片拖曳