webpack hello.js hello.bundle.js
Hash: c5b40cd56e56d95d3f6b
Version: webpack 1.15.0
Time: 41ms
[0] ./hello.js 0 bytes [built] [failed]
ERROR in ./hello.js
Module parse failed: F:\webpack\webpack-test\hello.js Unexpected token (1:9)
You may need an appropriate loader to handle this file type.
SyntaxError: Unexpected token (1:9)
webpack hello.js -o bundle.hello.js --mode=production
webpack app.js -o holle.js --mode=production
看了下评论 试了提供的各种方法任然报错 之后网上搜索需要全局安装,反正把所有的步骤执行一遍,问题就解决了 步骤
npm init
npm install webpack@1.13.2 --save-dev
npm install webpack -g
webpack hello.js -o ./hello.bundle.js --mode development
在按照本课程学习webpack之前,得先确定你和老师所用的webpack的版本差异,现在直接运行npm i webpack -D 后的webpack版本是4.16.5(2018年8月13日),而这个课程的发布时间应该较早,我没有细看该课,很有可能是webpack 3.x 版本,所以导致报错