码迷,mamicode.com
首页 > 其他好文 > 详细

- cinfiguration.resolve.extensitions should not be enpty.

时间:2017-05-17 13:55:39      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:cond   pac   mat   initial   数组下标   sed   命令   config   invalid   

dos 命令运行“webpack”报这种错误:

Invalid configuration object. Webpack has been initialised using a configuration object that does bot match the API schema.
- cinfiguration.resolve.extensitions[0] should not be enpty.

webpack.condig.js错误配置:

resolve: {
  extensions: [‘.js‘,‘ ‘, ‘.json‘, ‘.css‘, ‘.scss‘]
},

原因:数组下标无值,0下标无值extensitions[0]、1下标无值extensitions[1]。

 

正确配置:删除无值的下标j即可

resolve: {

  extensions: [‘.js‘, ‘.json‘, ‘.css‘, ‘.scss‘]
},

 

- cinfiguration.resolve.extensitions should not be enpty.

标签:cond   pac   mat   initial   数组下标   sed   命令   config   invalid   

原文地址:http://www.cnblogs.com/Mohun-Blogs/p/6866699.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!