博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Webpack 学习记录-02
阅读量:6333 次
发布时间:2019-06-22

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

想在HTMl页面中生成内联的JS代码:

index.html

	
<%= htmlWebpackPlugin.options.title %> <% for (var chk in htmlWebpackPlugin.files.chunks) {%><% if(chk!=="main") {%><% } %><% } %>

 webpack.config.js

var htmlWebpackPlugin=require("html-webpack-plugin");module.exports={	entry:{		main:'./src/script/main.js',		a:'./src/script/a.js',		b:"./src/script/b.js",		c:"./src/script/c.js"	},	output:{		path:__dirname+"/dist",		filename:"js/[name].js"	},	plugins:[		new htmlWebpackPlugin({			template:'index.html',			inject:'body',			filename:"a.html",			title:"this is a.html",			chunks:['main','a']		}),		new htmlWebpackPlugin({			template:"index.html",			inject:'body',			filename:"b.html",			title:"this is b.html",			chunks:['main','a']		}),		new htmlWebpackPlugin({			template:"index.html",			inject:'body',			filename:"c.html",			title:"this  is c.html",			chunks:['main','c']		})	]			}

 开始拼写错了<%= compilation.assets[htmlWebpackPlugin.files.chunks.main.entry.substr(htmlWebpackPlugin.files.publicPath.length)].source() %>

    </script>  写错为:<%= compilation.asserts[htmlWebpackPlugin.files.chunks.main.entry.substr(htmlWebpackPlugin.files.publicPath.length)].source() %>
    </script>

 

一直报错:

转载于:https://www.cnblogs.com/happyfish321/p/6918545.html

你可能感兴趣的文章
获取SQL数据库中的数据库名、所有表名、所有字段名、列描述
查看>>
Orchard 视频资料
查看>>
简述:预处理、编译、汇编、链接
查看>>
调试网页PAIP HTML的调试与分析工具
查看>>
路径工程OpenCV依赖文件路径自动添加方法
查看>>
玩转SSRS第七篇---报表订阅
查看>>
WinCE API
查看>>
SQL语言基础
查看>>
对事件处理的错误使用
查看>>
最大熵模型(二)朗格朗日函数
查看>>
深入了解setInterval方法
查看>>
html img Src base64 图片显示
查看>>
[Spring学习笔记 7 ] Spring中的数据库支持 RowMapper,JdbcDaoSupport 和 事务处理Transaction...
查看>>
FFMPEG中关于ts流的时长估计的实现(转)
查看>>
Java第三次作业
查看>>
【HDOJ 3652】B-number
查看>>
android代码混淆笔记
查看>>
Codeforces Round #423 (Div. 2, rated, based on VK Cup Finals) C. String Reconstruction 并查集
查看>>
BMP文件的读取与显示
查看>>
Flash文字效果
查看>>