mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
93 lines
2.3 KiB
JavaScript
93 lines
2.3 KiB
JavaScript
module.exports = {
|
|
siteMetadata: {
|
|
author: 'Shelby Switzer',
|
|
title: `Justice40 Climate and Environment Justice Screening Tool`,
|
|
description: `Front end for Justice40 mappping tool project`,
|
|
navigation: [
|
|
{
|
|
items: [{ text: 'Home', link: '/' }],
|
|
},
|
|
{
|
|
items: [
|
|
{ text: 'Document with sidenav', link: '/document-with-sidenav' },
|
|
],
|
|
},
|
|
{
|
|
title: 'Document submenu',
|
|
items: [
|
|
{ text: 'Navigation link', link: '/' },
|
|
{ text: 'Navigation link', link: '/' },
|
|
{ text: 'Navigation link', link: '/' },
|
|
],
|
|
},
|
|
],
|
|
secondaryLinks: [
|
|
{ text: 'Secondary link', link: '/' },
|
|
{ text: 'Another secondary link', link: '/' },
|
|
],
|
|
|
|
/**
|
|
* Search.gov configuration
|
|
*
|
|
* 1. Create an account with Search.gov https://search.usa.gov/signup
|
|
* 2. Add a new site.
|
|
* 3. Add your site/affiliate name here.
|
|
*/
|
|
searchgov: {
|
|
|
|
// You should not change this.
|
|
endpoint: 'https://search.usa.gov',
|
|
|
|
// replace this with your search.gov account
|
|
affiliate: 'federalist-uswds-example',
|
|
|
|
// replace with your access key
|
|
access_key: 'xX1gtb2RcnLbIYkHAcB6IaTRr4ZfN-p16ofcyUebeko=',
|
|
|
|
// this renders the results within the page instead of sending to user to search.gov
|
|
inline: true,
|
|
},
|
|
},
|
|
pathPrefix: process.env.BASEURL || '/',
|
|
plugins: [
|
|
"gatsby-plugin-netlify-cms",
|
|
"gatsby-plugin-sass",
|
|
"gatsby-plugin-image",
|
|
"gatsby-plugin-react-helmet",
|
|
"gatsby-plugin-sitemap",
|
|
{
|
|
resolve: "gatsby-plugin-manifest",
|
|
options: {
|
|
icon: "src/images/icon.png",
|
|
},
|
|
},
|
|
"gatsby-plugin-mdx",
|
|
"gatsby-plugin-sharp",
|
|
"gatsby-transformer-sharp",
|
|
{
|
|
resolve: "gatsby-source-filesystem",
|
|
options: {
|
|
name: "images",
|
|
path: "./src/images/",
|
|
},
|
|
__key: "images",
|
|
},
|
|
{
|
|
resolve: "gatsby-source-filesystem",
|
|
options: {
|
|
name: "pages",
|
|
path: "./src/pages/",
|
|
},
|
|
__key: "pages",
|
|
},
|
|
{
|
|
resolve: `gatsby-source-filesystem`,
|
|
options: {
|
|
path: `${__dirname}/src/markdown-pages`,
|
|
name: `markdown-pages`,
|
|
},
|
|
},
|
|
`gatsby-transformer-remark`,
|
|
`gatsby-plugin-react-leaflet`
|
|
],
|
|
};
|