From 7c7a8921af50c4cef0077642ac6a90de18aa9de3 Mon Sep 17 00:00:00 2001 From: rudouglas Date: Thu, 13 May 2021 15:46:58 +0100 Subject: [PATCH] feat: adding feature flags for faster building Added flags that are on Docs site to align builds ``` flags: { DEV_SSR: true, PRESERVE_WEBPACK_CACHE: true, PRESERVE_FILE_DOWNLOAD_CACHE: true, } ``` --- gatsby-config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gatsby-config.js b/gatsby-config.js index a7c9ea727..b773e5d12 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -1,6 +1,11 @@ const quote = (str) => `"${str}"`; module.exports = { + flags: { + DEV_SSR: true, + PRESERVE_WEBPACK_CACHE: true, + PRESERVE_FILE_DOWNLOAD_CACHE: true, + }, siteMetadata: { title: 'New Relic Developers', titleTemplate: '%s | New Relic Developers',