简体   繁体   中英

Can't resolve gstatic.com.. in node_modules/firebase

does anyone know why this issue comes?

Module not found: Error: Can't resolve 'https://www.gstatic.com/firebasejs/9.14.0/firebase-app.js' in '<route to project>/node_modules/firebase'

versions:

"firebase": "^9.14.0",
"@nuxtjs/firebase": "^8.2.2",

The issue was showing up because I was using import statement for firebase 8

import firebase from 'firebase/app'
import 'firebase/firebase-messaging'

it should be like this:

import { initializeApp } from "firebase/app";
import { getMessaging } from "firebase/messaging";

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM