当前位置:主页
> 资源下载 > 50 > html-replace-all-webpack-plugin是一款Webpack插件,其功能是在所有操作中替换HTML内容,支持字符串、正则表达式和对象的替换
-
html-replace-all-webpack-plugin是一款Webpack插件,其功能是在所有操作中替换HTML内容,支持字符串、正则表达式和对象的替换
资源介绍
html-replace-all-webpack-plugin
该支持全部替换通过字符串或正则表达式在webpack中运行的html。
安装
$ npm install --save html-replace-all-webpack-plugin
用法
替换一场比赛
new HtmlReplaceWebpackPlugin ( {
matches : [ {
match : / <body> / ,
value : `<body>hello World!` ,
} ]
} )
替换两场比赛
new HtmlReplaceWebpackPlugin ( {
matches : [ {
matchStart : / <body> / ,
matchEnd : / < \/ body> / ,
value : `<body>hello Wor