タイトル通りNuxt.jsとFirebaseを使ってAuth(認証)のためにプラグインを入れるとエラーが表示されます。
ググってみるとSSRが原因とのことですが、具体的な解決方法がわからず困っています。
~/plugins/firebase.js
// Import the functions you need from the SDKs you need import { initializeApp } from "firebase/app"; import { getAnalytics } from "firebase/analytics"; // TODO: Add SDKs for Firebase products that you want to use // https://firebase.google.com/docs/web/setup#available-libraries // Your web app's Firebase configuration // For Firebase JS SDK v7.20.0 and later, measurementId is optional const firebaseConfig = { apiKey: "*************", authDomain: "*************", projectId: "*************", storageBucket: "*************", messagingSenderId: "*************", appId: "*************", measurementId: "*************" }; // Initialize Firebase const app = initializeApp(firebaseConfig); const analytics = getAnalytics(app);
nuxt.config.js
plugins: [ '~/plugins/firebase.js' ],
これを入れるとエラー表示されます。
あなたの回答
tips
プレビュー