Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-source-firebase_store

This source plugin for Gatsby will make Firebase Store information available in GraphQL queries.

Installation

# Install the plugin
yarn add gatsby-source-firebase_store

In gatsby-config.js:

module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-firebase_store`,
      options: {
        credential: require("./firebase-key.json"),
        paths: ["__pathForYouDocumentOnStorage__"]
      }
    }
  ]
};

You can get ‘firebase-key.json’ at Firebase Console - help

Google Firebase

© 2023 Gatsby, Inc.