index.html 用模板写法 说申明的 HtmlWebpackPlugin 找到不到

来源:3-2 自动化生成项目中的html页面(中)

风含情水韩笑

2018-08-07 16:45

const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
    entry: {
        main:'./src/script/main.js',
        a:'./src/script/a.js'
    },
    output: {
        path:path.join(__dirname,'./dist'),
        filename: 'js/[name].js'
    },
    plugins: [
        new HtmlWebpackPlugin({
            filename: 'index.html',
            template:'index.html',
            inject:"head",
            title:"webpack is good",
            data:"1"
        })
    ],
}


写回答 关注

4回答

  • AlbertDong
    2018-11-14 00:01:36

    template 那裡開頭"h"要小寫: 

    htmlWebpackPlugin

    使用 webpack 4.25.1


    Albert...

    我也不知道原因 XD

    2018-11-14 00:09:30

    共 1 条回复 >

  • 慢l慢
    2018-09-10 17:14:51

    安装

    html-webpack-plugin

    插件了吗

  • 慕村1858868
    2018-09-02 17:34:17

    我也一样,请问楼主找到什么原因了吗?

  • 勿负青春
    2018-08-08 18:29:26

    我猜想是不是插件没安装好

webpack深入与实战

webpack实战教程,用真实项目带你探索 webpack 强大的功能

86561 学习 · 721 问题

查看课程

相似问题