问答详情
源自:3-1 自动化生成项目中的html页面(上)

添加html模板后打包报错

主要报错是这个:

ERROR in Path must be a string. Received undefined。代码如下:

https://img1.mukewang.com/5b7ff9450001ab0f17200543.jpg

有遇到过吗?我的package.json如下:

{
  "name": "webpack4config",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "webpack": "webpack --config webpack.config.js --progress --display-modules --colors --display-reason"


  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "webpack": "^4.17.1",
    "webpack-cli": "^3.1.0",
    "webpack-html-plugin": "^0.1.1"
  }


提问者:翁国超 2018-08-24 21:05

个回答

  • 翁国超
    2018-08-24 21:42:23

    不好意思,搞错了,html包名称安装错了。是“html-webpack-plugin”而不是“webpack-html-plugin”。安装对了就没有问题了