博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
webpack.config.js====插件html-webpack-plugin
阅读量:6748 次
发布时间:2019-06-25

本文共 1409 字,大约阅读时间需要 4 分钟。

1. 安装

cnpm install html-webpack-plugin --save-dev

2. webpack.config.js中使用

const htmlWebpackPlugin = require('html-webpack-plugin');

 配置多个html页面

/*    * 配置多个入口文件    * */    entry: {        index: './src/default/js/index.js',        about: './src//about/js/index.js',        course: './src/course/js/index.js'    },
/*        * 配置html-webpack-plugin插件(配置多个html文件)        * template:模板路径        * filename:输出文件,可以是路径        * minify.removeComments:打包后是否删除参数        * minify.collapseWhitespace:打包后是否删除空格(压缩)        * hash        * chunks:包含的文件数组        * */        new htmlWebpackPlugin({            template: './src/index.html',            filename: 'index.html',            minify: {                collapseWhitespace: true            },            hash: true,            chunks: ['index']        }),        new htmlWebpackPlugin({            template: './src/about/index.html',            filename: 'about/index.html',            minify: {                collapseWhitespace: true            },            hash: true,            chunks: ['about']        }),        new htmlWebpackPlugin({            template: './src/course/index.html',            //编译后路径是:dist/course/index.html            filename: 'course/index.html',            minify: {                collapseWhitespace: true            },            hash: true,            chunks: ['course']        }),

 

转载于:https://www.cnblogs.com/songxia/p/10295765.html

你可能感兴趣的文章
[翻译]虚拟现实的头戴式设备的视野原理
查看>>
【转】oracle之触发器
查看>>
HTML基础复习(一)
查看>>
转:【Loadrunner】解决进制转换问题(注:此文章不能解决data.ws中进制问题,如需使用,请先实操)...
查看>>
转贴:压缩传感(Compressed sensing)
查看>>
POj 1105解题报告
查看>>
Zip 压缩和解压技术在 HTML5 中的应用
查看>>
django
查看>>
c#读写SDO_GEOMETRY字段
查看>>
JS原生练习
查看>>
玩转指针(Playing with Pointers)
查看>>
hibernate(六)一对一映射
查看>>
2019年寒假作业1 - 7-1 打印沙漏
查看>>
新的开始,今天开通了博客
查看>>
replace()替换文字扑获组做法
查看>>
C# 模拟Http/Https请求框架类
查看>>
C语言学习笔记(三) 输入输出函数的基本用法以及运算符
查看>>
初解禁:供SDK服务端调用函数--02+
查看>>
HTML 事件属性
查看>>
linux快速清空文件 比如log日志
查看>>