How to Build a Full Stack App with Next.js 13 and Firebase

In This Article
.#.How to Set Up a Next.js 13 Project
1.In your desired directory, launch your terminal and run the following
npx create-next-app@latest --experimental-app.
2. Enter your project name and click enter and wait for it to install.
3. A new directory with your project name will be created with the necessary files.
4. cd your way into the new directory :
cd my-project-name
5. To start the development server, run the following command
npm run dev
How to Set Up Firebase in Next.js
- Go to https://console.firebase.google.com/ and login in with your Google account.
- Click on Add Project and give your project a name. Click on Continue.
- On the next screen you can choose if you want to enable analytics for your project.
- Click on Create project.
Next, you need to create a web app. On your project homepage click on the web icon to create your web app#image_title
Click here


