New Launch

Take a deep dive into the fastest Gatsby, yet: Gatsby 5!

Deploying to Firebase Hosting

In this guide, you will learn how to deploy your Gatsby site to Firebase Hosting.

Firebase Hosting is a free web content hosting platform for developers. With a single command, you can quickly deploy web apps and serve both static and dynamic content to a global CDN (content delivery network).

Pre-requisites

  1. Make sure you have:

  2. This guide assumes that you already have a Gatsby project on your local machine.

Deployment

  1. Install the Firebase CLI with npm by running the following command:

  2. Sign in to Firebase using your Google account by running the following command:

    You can test if the CLI is correctly installed by running firebase projects:list, which should show you a list of your Firebase Projects.

  3. Navigate into your gatsby project directory and setup firebase:

    This command will prompt you to:

    • select the Firebase products you wish to set up. Be sure to select Firebase Hosting.
    • select the Firebase Project you wish to use or create a new one, if you haven’t done it previously.

    When prompted to select your public directory, press enter. It will default to public, which is also Gatsby’s default public directory.

  4. Update the firebase.json with the following cache settings

  5. Prepare your site for deployment by running gatsby build. This generates a publishable version of your site in the public folder.

  6. Deploy your site by running the following command:

All done! Once the deployment concludes, you can access your website using firebaseProjectId.firebaseapp.com or firebaseProjectId.web.app.

Check the Firebase Docs for information about how to customize your deployment further. Remember that each time you wish to redeploy your site, you will need to rerun gatsby build first.

For automatic setup of builds that are deployed straight to Firebase:

Try it on Gatsby Cloud!

References:

Edit this page on GitHub
© 2022 Gatsby, Inc.