考虑:
plugins: [
new HtmlWebpackPlugin({
template: 'index.pug',
title: 'Page Title',
custom: 'Custom'
})
]
内部index.pug
:
doctype html
html
head
meta(charset="utf-8")
meta(http-equiv="X-UA-Compatible" content="IE=edge")
meta(name="viewport" content="width=device-width, initial-scale=1")
title= htmlWebpackPlugin.options.title
我希望自定义标题会被选中,但它会输出默认标题Webpack App
(custom
变量为undefined
)。
- 网络包 1.15.0
- html-web-pack-plugin 2.30.1
- 哈巴狗 2.0.0-rc.4
我在这里束手无策,我觉得我错过了一些明显的东西。