p.p1 { margin: 0.0px 0.0px 0.1px 28.3px; text-indent: -28.4px; font: 12.0px "Helvetica Neue"; color: #000000 }
span.s1 { }
span.s2 { font: 12.0px "PingFang SC" }
span.Apple-tab-span { white-space: pre }
1、安装webpack-html-plugin模块
$ npm install webpack-html-plugin —save-dev
2、webpack.config.js文件写入
var WebpackHtmlPlugin = require(‘webpack-html-plugin‘);
output: {
path: path.resolve(__dirname, ‘./dist‘),
publicPath: ‘/dist/‘,
filename: ‘[name].js‘
},
plugins: [
new WebpackHtmlPlugin({
template:‘forgetPass.html‘,
filename:‘forgetPass.html‘
}),
new WebpackHtmlPlugin({
template:’app/utils/crawTask/crawTaskProcess/websiteRange/failSheet.html’,
filename:‘utils/crawTask/crawTaskProcess/websiteRange/failSheet.html‘
})
]
时间: 2024-09-28 01:51:13