为了账号安全,请及时绑定邮箱和手机立即绑定

webpack hello.js hello.bundle.js --module-bind 'css=style-loader!css-loader' (这个是啥情况)

webpack hello.js hello.bundle.js --module-bind 'css=style-loader!css-loader' (这个是啥情况)

慕粉1951497347 2017-02-19 09:58:21
Hash: d5e2bda23e9f8818e792Version: webpack 1.12.3Time: 911ms          Asset     Size  Chunks             Chunk Nameshello.bundle.js  10.4 kB       0  [emitted]  main   [0] ./hello.js 174 bytes {0} [built]   [1] ./word.js 39 bytes {0} [built]    + 3 hidden modulesERROR in ./~/css-loader!./~/style-loader!./~/css-loader!./style.cssModule build failed: Unknown word (5:1)  3 | // load the styles  4 | var content = require("!!./node_modules/css-loader/index.js!./style.css");> 5 | if(typeof content === 'string') content = [[module.id, content, '']];    | ^  6 | // add the styles to the DOM  7 | var update = require("!./node_modules/style-loader/addStyles.js")(content, {});  8 | if(content.locals) module.exports = content.locals; @ ./~/style-loader!./~/css-loader!./style.css 4:14-145
查看完整描述

1 回答

?
滄浪之水

TA贡献15条经验 获得超2个赞

看样子是在打包style.css时报出的错误

 var content = require("!!./node_modules/css-loader/index.js!./style.css");

这句话已经是指定用css-loader来处理style.css, 貌似写的有问题,另外在使用webpack指令时没必要再指定loader

可以直接写成这样

 var content = require("style!css!/style.css");
 webpack hello.js hello.bundle.js


查看完整回答
反对 回复 2017-03-06
  • 1 回答
  • 0 关注
  • 2427 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信