new blog app with next react with firebase firestore

14 tháng 7, 2024

Here’s a basic structure for your blog app using Next.js (App Router), React, Material-UI (MUI), and Firebase Firestore. This example includes features for fetching blogs from Firestore, filtering by tags, and supporting pagination.

 

Setting up Firebase Firestore

First, ensure you have set up Firebase in your Next.js project. Install the necessary dependencies:

npm install firebase
npm install @mui/material @emotion/react @emotion/styled

Create a firebase.js file to initialize Firebase:

// firebase.js
import { initializeApp } from "firebase/app";
import { getFirestore } from "firebase/firestore";

const firebaseConfig = {
  apiKey: "YOUR_API_KEY",
  authDomain: "YOUR_AUTH_DOMAIN",
  projectId: "YOUR_PROJECT_ID",
  storageBucket: "YOUR_STORAGE_BUCKET",
  messagingSenderId: "YOUR_MESSAGING_SENDER_ID",
  appId: "YOUR_APP_ID",
};

const app = initializeApp(firebaseConfig);
const db = getFirestore(app);

export { db };

 

To setup ckeditor 5 with next 14 app router, reactjs

setting-up-ckeditor-5-next-react

Vitinhhoangduc Blog

🌟 Khám phá thế giới tri thức không giới hạn! Từ công nghệ đỉnh cao đến bí quyết phát triển bản thân, blog của chúng tôi là kho báu dành cho trí tuệ hiện đại. Cho dù bạn là developer đam mê coding, marketer muốn chinh phục digital space, hay simply một curious mind - hãy cùng lướt sóng tri thức và bắt kịp nhịp đập của tương lai! 🚀 Mỗi bài viết là một chìa khóa mở ra chân trời mới - Bạn ready để upgrade chưa?