Repository URL to install this package:
|
Version:
2.0.2 ▾
|
// 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;