Module not found: Error: Can't resolve 'babel-runtime/helper/extends'
最近启动一个vue的项目,结果老是报错,还是一大片的爆红,上网搜了很多,竟说些有的没的,在此解决了,以作记录~报错1场景:ERROR in ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/App.vueModule not fo...
最近启动一个vue的项目,结果老是报错,还是一大片的爆红,上网搜了很多,竟说些有的没的,在此解决了,以作记录~
报错1场景:
ERROR in ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/App.vue
Module not found: Error: Can't resolve 'babel-runtime/helper/extends' in 'C:\工作文档\微信小程序\gaojunjie03-spr
ingboot-hichat-master\springboot-hichat\html\hichat\src'
@ ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/App.vue 1:0-67
@ ./src/App.vue
@ ./src/main.js
对于第一次使用vue,然后爆出这么一大片错误,我那个慌啊~网上找不到答案,我就自己读错误了,咦~然后发现Error说无法解决babel-runtime/helper/extends
解决方案:引入包
npm install --save @babel/runtime
所以后来可以猜测到,像这种一般都是包没有引入的问题,以后大家想这种,可以去该网站(https://www.npmjs.com/package/@babel/runtime)查询一下,看看缺什么包,然后安装一下就可以了
报错2场景:
该好了上面的问题后,又报错了,和上面报错的错误码差不多,但是包指定的不一样,这次是label-runtime/core-js/json/sstringify
ERROR in ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/App.vue
Module not found: Error: Can't resolve 'babel-runtime/core-js/json/stringify' in 'C:\工作文档\微信小程序\gaojunjie03-spr
ingboot-hichat-master\springboot-hichat\html\hichat\src'
@ ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/App.vue 1:0-67
@ ./src/App.vue
@ ./src/main.js
ERROR in ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/components/
login.vue
Module not found: Error: Can't resolve 'babel-runtime/core-js/json/stringify' in 'C:\工作文档\微信小程序\gaojunjie03-spr
ingboot-hichat-master\springboot-hichat\html\hichat\src\components'
@ ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib/selector.js?type=script&index=0!./src/components/login.
vue 1:0-67
@ ./src/components/login.vue
@ ./src/main.js
根据上面的经验大概能够猜测出事包的问题,然后推断了一下,都是babel-runtime后的文件没有,所以根源上应该是和babel-runtime的包没有。根据网上的经验,我这里缺的应该就是babel-runtime的包
解决办法:npm install babel-runtime
你是技术宅么?那就加入我们吧~本博主不一定长期在线,可以进群大家一起解决问题~
欢迎加入 CSDN技术交流群2:(点击即可加群)QQ群:456543087
CSDN技术交流群(已满员):(点击即可加群)QQ群:681223095。
商务合作@群主,谢谢!
更多推荐
所有评论(0)