Skip to content

Commit

Permalink
App with routes
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorg2211 committed Nov 8, 2021
1 parent 0f3525f commit 020e631
Show file tree
Hide file tree
Showing 18 changed files with 3,038 additions and 118 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["next/babel"],
"plugins": []
}
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "next/core-web-vitals"
"extends": ["next/core-web-vitals", "next/babel"]
}
19 changes: 19 additions & 0 deletions firebase.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { initializeApp } from "firebase/app";
import { GoogleAuthProvider, getAuth } from "firebase/auth";

// Your web app's Firebase configuration
const firebaseConfig = {
apiKey: "AIzaSyC4vFjiAwlRR14E5wZPRifTROvyhz-AK2Y",
authDomain: "rider-25b89.firebaseapp.com",
projectId: "rider-25b89",
storageBucket: "rider-25b89.appspot.com",
messagingSenderId: "139371785173",
appId: "1:139371785173:web:178b2ba73b21c94fd56b5c",
};

// Initialize Firebase
const app = initializeApp(firebaseConfig);
const provider = new GoogleAuthProvider();
const auth = getAuth();

export { app, provider, auth };
Loading

0 comments on commit 020e631

Please sign in to comment.