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

使用htmlWebpackPlugin插件的时候 ,npm run webpack 报错,错误如下

http://img.mukewang.com/58c641280001d3ab08200427.jpg

这个错误是什么意思?谢谢

提问者:狸窝 2017-03-13 14:50

个回答

  • Richiechoo
    2017-03-16 17:54:56

    如果不是全局安装webpack,前面两节的webpack hello.js hello.bundle.js都会报错,说webpack不是内部或者外部命令


  • 狸窝
    2017-03-13 15:03:23

    npm remove webpack -g

    npm i webpack --save-dev

    如果是全局安装会报错,此时执行上面两个命令。原因如下:

    You have to npm i webpack --save-dev , global install doesn't work.


    install it globally if you want the CLI anywhere. ever install it locally in your project if you use webpack. the global CLI will use the locally installed version when installed.