컨텐츠로 이동

Deploy your Astro Site to Google’s Firebase Hosting

이 컨텐츠는 아직 번역되지 않았습니다.

Firebase Hosting is a service provided by Google’s Firebase app development platform, which can be used to deploy an Astro site.

See our separate guide for adding Firebase backend services such as databases, authentication, and storage.

How to deploy

  1. Make sure you have firebase-tools installed.

  2. Create firebase.json and .firebaserc at the root of your project with the following content:

    firebase.json:

    {
    "hosting": {
    "public": "dist",
    "ignore": []
    }
    }

    .firebaserc:

    {
    "projects": {
    "default": "<YOUR_FIREBASE_ID>"
    }
    }
  3. After running npm run build, deploy using the command firebase deploy.

배포 안내서

더 많은 배포 안내서

배포 타입에 따라 분류