JSON

Webpack入门教程十一

字号+ 作者:H5之家 来源:H5之家 2017-02-27 11:01 我要评论( )

60.htmlwebpackplugin插件的配置-title的使用,修改webpack.config.js文件,修改的内容如下varwebpack=require(‘webpack‘);varHtmlWebpackPlugin=require(‘html

标签:webpack入门教程十一

60.htmlwebpackplugin插件的配置-title的使用,修改webpack.config.js文件,修改的内容如下var webpack = require(‘webpack‘); var HtmlWebpackPlugin = require(‘html-webpack-plugin‘); module.exports = { entry:  __dirname + "/app/Greeter.js", output: { path: __dirname + "/build", filename: "bundle.js" }, devServer:{ contentBase:"./public", historyApiFallback:true, inline:true }, module:{ loaders:[ { test:/\.json$/, loader:"json-loader" }, { test:/\.js$/, exclude:/node_modules/, loader:‘babel-loader‘ }, { test:/\.css$/, loader:‘style-loader!css-loader?modules‘ } ] }, plugins:[ new webpack.BannerPlugin("copyright suyan"), new HtmlWebpackPlugin({ template:__dirname + "/app/index.tmpl.html", title:‘htmlwebpackplugin title test‘ }) ] }说明template:表示模板 title:生成的html文档的标题,配置该项,它并不会替换指定模板文件中的title元素的内容,html模板文件中使用模板引擎语法 来获取该配置项值才可以61.创建模板文件index.tmpl.html,模板内容如下<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title><%= htmlWebpackPlugin.options.title %></title> <link rel="stylesheet" href=""> </head> <body> <div id="root"></div> </body> </html>62.在命令行程序中使用webpack命令进行打包

技术分享

63.查看build目录下的目录结构,会生成一个叫index.html的文件,项目目录结构如下,index.html文件内容如下:

技术分享

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>htmlwebpackplugin title test</title> <link rel="stylesheet" href=""> </head> <body> <div id="root"></div> <script type="text/javascript" src="bundle.js"></script></body> </html>说明index.html文件就是通过我们的模板文件index.tmpl.html生成的,在我们的webpack.config.js文件中,我们使用了HtmlWebpa ckPlugin插件,在插件配置项中我们配置了title:‘htmlwebpackplugin title test‘,再看我们生成的index.html文件的<titl e>这个标签中的内容正是我们在webpack.config.js中配置的内容.在模板文件中我们使用了<%=htmlWebpackPlugin.options.t itle %>来获取配置文件中的title值.


本文出自 “素颜” 博客,请务必保留此出处

Webpack入门教程十一

标签:webpack入门教程十一

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • 【Unity技巧】开发技巧(技巧篇)

    【Unity技巧】开发技巧(技巧篇)

    2017-02-22 14:00

  • php返回json数据函数实例

    php返回json数据函数实例

    2017-02-14 11:00

  • touch.js 拖动、缩放、旋转 (鼠标手势)

    touch.js 拖动、缩放、旋转 (鼠标手势)

    2017-02-12 09:01

  • 【JS学习】JS基础2

    【JS学习】JS基础2

    2017-01-26 16:02

网友点评