我一直在Nuxt中使用firebase,但是随着2.5.0升级,我遇到了这些错误。似乎无法找出问题所在?
ERROR Failed to compile with 7 errors friendly-errors 13:21:54
These dependencies were not found: friendly-errors 13:21:54
friendly-errors 13:21:54
* core-js/fn/array/find in ./node_modules/@firebase/polyfill/dist/index.esm.js friendly-errors 13:21:54
* core-js/fn/array/find-index in ./node_modules/@firebase/polyfill/dist/index.esm.js friendly-errors 13:21:54
* core-js/fn/object/assign in ./node_modules/@firebase/polyfill/dist/index.esm.js friendly-errors 13:21:54
* core-js/fn/string/repeat in ./node_modules/@firebase/polyfill/dist/index.esm.js friendly-errors 13:21:54
* core-js/fn/string/starts-with in ./node_modules/@firebase/polyfill/dist/index.esm.js friendly-errors 13:21:54
* core-js/fn/symbol in ./node_modules/@firebase/polyfill/dist/index.esm.js friendly-errors 13:21:54
* core-js/fn/symbol/iterator in ./node_modules/@firebase/polyfill/dist/index.esm.js friendly-errors 13:21:54
friendly-errors 13:21:54
To install them, you can run: npm install --save core-js/fn/array/find core-js/fn/array/find-index core-js/fn/object/assign core-js/fn/string/repeat core-js/fn/string/starts-with core-js/fn/symbol core-js/fn/symbol/iterator
答案 0 :(得分:1)
我有这个确切的问题。
* core-js/modules/es6.array.find in ./.nuxt/client.js friendly-errors 20:39:58
* core-js/modules/es6.array.iterator in ./.nuxt/client.js friendly-errors 20:39:58
* core-js/modules/es6.date.to-string in ./.nuxt/utils.js, ./.nuxt/components/nuxt.js
* core-js/modules/es6.function.name in ./.nuxt/client.js friendly-errors 20:39:58
* core-js/modules/es6.object.assign in ./.nuxt/client.js friendly-errors 20:39:58
* core-js/modules/es6.object.keys in ./.nuxt/client.js friendly-errors 20:39:58
* core-js/modules/es6.object.to-string in ./.nuxt/client.js, ./.nuxt/components/nuxt-link.client.js
* core-js/modules/es6.promise in ./.nuxt/client.js friendly-errors 20:39:58
* core-js/modules/es6.regexp.constructor in ./.nuxt/utils.js friendly-errors 20:39:58
* core-js/modules/es6.regexp.match in ./.nuxt/client.js friendly-errors 20:39:58
* core-js/modules/es6.regexp.replace in ./.nuxt/utils.js, ./.nuxt/components/nuxt.js
* core-js/modules/es6.regexp.search in ./.nuxt/utils.js friendly-errors 20:39:58
* core-js/modules/es6.regexp.split in ./.nuxt/utils.js, ./node_modules/babel-loader/lib??ref--2-0!./node_modules/vue-loader/lib??vue-loader-options!./.nuxt/components/nuxt-build-indicator.vue?vue&type=script&lang=js& and 1 other
* core-js/modules/es6.regexp.to-string in ./.nuxt/utils.js, ./.nuxt/components/nuxt.js
* core-js/modules/es6.string.includes in ./.nuxt/client.js, ./.nuxt/components/nuxt-link.client.js
* core-js/modules/es6.string.iterator in ./.nuxt/client.js friendly-errors 20:39:58
* core-js/modules/es6.string.repeat in ./.nuxt/utils.js friendly-errors 20:39:58
* core-js/modules/es6.string.starts-with in ./.nuxt/utils.js friendly-errors 20:39:58
* core-js/modules/es6.symbol in ./.nuxt/client.js, ./.nuxt/components/nuxt-link.client.js
* core-js/modules/es7.array.includes in ./.nuxt/client.js, ./.nuxt/components/nuxt-link.client.js
* core-js/modules/es7.object.get-own-property-descriptors in ./.nuxt/index.js
* core-js/modules/es7.promise.finally in ./.nuxt/client.js friendly-errors 20:39:58
* core-js/modules/es7.symbol.async-iterator in ./.nuxt/client.js, ./.nuxt/components/nuxt-link.client.js
* core-js/modules/web.dom.iterable in ./.nuxt/client.js, ./.nuxt/components/nuxt-link.client.js
问题是,我正在运行nuxt 2.11。
答案 1 :(得分:1)
npm install core-js@2.6.10
解决问题
"dependencies": {
"@nuxtjs/auth": "^4.9.1",
"@nuxtjs/axios": "^5.10.3",
"@nuxtjs/firebase": "^5.0.7",
"core-js": "2.6.10",
"firebase": "^7.14.2",
"nuxt": "^2.12.2"
},
"devDependencies": {
"@nuxtjs/vuetify": "^1.11.2"
}
答案 2 :(得分:0)
该问题应该在nuxt 2.5.1版本中解决。