Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
// These are the default options which can be overwritten
// in gatsby-config.js
const defaultOptions = {
    query: `
    {
        allSitePage {
            edges {
                node {
                    id
                    slug: path
                    url: path
                }
            }
        }
    }`,
    mapping: {
        allSitePage: {
            sitemap: `pages`
        }
    },
    output: `/sitemap.xml`,
    exclude: [
        `/dev-404-page`,
        `/404`,
        `/404.html`,
        `/offline-plugin-app-shell-fallback`
    ],
    createLinkInHead: true
};

export default defaultOptions;