mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 01:54:18 -08:00
* removing unused js * Working for first load, second raises 'failed to SSR' without DEV_SSR enabled. We will need to fix this before prod
16 lines
469 B
JavaScript
16 lines
469 B
JavaScript
module.exports = {
|
|
/*
|
|
This is to workaround the following error when building locally:
|
|
Warning: React.createElement: type is invalid -- expected a string
|
|
(for built-in components) or a class/function (for composite components) but got: undefined.
|
|
at IndexPage
|
|
We will need to fix this before running `gatsby build`
|
|
*/
|
|
flags: {
|
|
DEV_SSR: false
|
|
},
|
|
siteMetadata: {
|
|
title: "Justice40",
|
|
},
|
|
plugins: ['gatsby-plugin-scss-typescript'],
|
|
};
|