84.HtmlWebpackPlugin的chunks的配置,webpack.config.js文件修改如下varwebpack=require(‘webpack‘);
varHtmlWebpackPlugin=require(‘html-webpack-plugin‘);
module.exports={
entry:{
‘Greeter‘:__dirname+"/app/Greeter.js",
‘a‘:__dirname+"/app/a.js",
‘b‘:__dirn..
分类:
Web程序 时间:
2017-02-20 23:42:08
阅读次数:
409
88.在HtmlWebpackPlugin中使用excludeChunks项,修改webpack.config.js文件,修改内容如下varwebpack=require(‘webpack‘);
varHtmlWebpackPlugin=require(‘html-webpack-plugin‘);
module.exports={
entry:{
‘Greeter‘:__dirname+"/app/Greeter.js",
‘a‘:__dirname+"/app/a..
分类:
Web程序 时间:
2017-02-20 23:39:57
阅读次数:
389
133.在模板中以内联的形式引用script脚本,修改webpack.config.js文件,代码如下varhtmlWebpackPlugin=require("html-webpack-plugin");
module.exports={
entry:{
main:‘./src/script/main.js‘,
a:‘./src/script/a.js‘
},
output:{
path:‘./dist‘,
filename:‘js/[na..
分类:
Web程序 时间:
2017-02-20 23:18:16
阅读次数:
192
60.htmlwebpackplugin插件的配置-title的使用,修改webpack.config.js文件,修改的内容如下varwebpack=require(‘webpack‘);
varHtmlWebpackPlugin=require(‘html-webpack-plugin‘);
module.exports={
entry:__dirname+"/app/Greeter.js",
output:{
path:__dirname+"/build",..
分类:
Web程序 时间:
2017-02-20 14:17:15
阅读次数:
269
81.在webpack.config.js文件配置collapseWhitespace项,用于删除空白字符与换行符,修改内容如下varwebpack=require(‘webpack‘);
varHtmlWebpackPlugin=require(‘html-webpack-plugin‘);
module.exports={
entry:__dirname+"/app/Greeter.js",
output:{
path:__dirname+"/bu..
分类:
Web程序 时间:
2017-02-20 14:08:15
阅读次数:
301
57.注释插件(BannerPlugin)使用,修改webpack.config.js配置文件,修改内容如下varwebpack=require(‘webpack‘);
module.exports={
entry:__dirname+"/app/Greeter.js",
output:{
path:__dirname+"/public",
filename:"bundle.js"
},
devServer:{
contentBase:"./publi..
分类:
Web程序 时间:
2017-02-18 21:41:05
阅读次数:
245