求解!!!打包的时候报错了

来源:1-2 Webpack 安装和命令行

慕粉3696187

2018-08-11 17:06

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)


写回答 关注

4回答

  • ADDtu
    2018-09-16 22:13:58

    webpack hello.js  -o bundle.hello.js --mode=production

  • Simplelife_4
    2018-09-15 16:45:08

    webpack app.js -o  holle.js --mode=production

  • 慕勒6432881
    2018-08-13 16:45:27

    看了下评论 试了提供的各种方法任然报错   之后网上搜索需要全局安装,反正把所有的步骤执行一遍,问题就解决了 步骤

    1. npm init

    2. npm install webpack@1.13.2 --save-dev

    3. npm install webpack -g

    4. webpack hello.js -o ./hello.bundle.js --mode development


    什么都不懂3...

    最后一句很关键阿

    2018-11-13 00:35:59

    共 1 条回复 >

  • Siio
    2018-08-13 09:51:58

    在按照本课程学习webpack之前,得先确定你和老师所用的webpack的版本差异,现在直接运行npm i webpack -D 后的webpack版本是4.16.5(2018年8月13日),而这个课程的发布时间应该较早,我没有细看该课,很有可能是webpack 3.x 版本,所以导致报错

webpack深入与实战

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

86561 学习 · 721 问题

查看课程

相似问题