考慮:HTML-的WebPack-插件與哈巴狗裝載機不拾取選項
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
)。
- 的WebPack 1.15.0
- HTML-的WebPack-插件2.30.1
- 哈巴狗2.0.0 rc.4
我在束手無策就在這裏,我感覺這是我錯過的東西。
'htmlWebpackPlugin'選項只能在'.ejs'文件。 – imcvampire
@imcvampire認真嗎?這是記錄在哪裏? – Ivan
它僅默認支持'ejs'。但你可以配置使用另一個加載器 – imcvampire