File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11/* eslint-env node */
22
33const isProduction = process . env . NODE_ENV === "production" ;
4- const isFullSiteBuild = process . env . BUILD_FULL_SITE !== "false ";
4+ const isFullSiteBuild = process . env . BUILD_FULL_SITE === "true ";
55const HEAVY_COLLECTIONS = [ "members" , "integrations" ] ;
66const collectionIgnoreGlobs = isFullSiteBuild
77 ? [ ]
Original file line number Diff line number Diff line change 1010 "url" : " https://layer5.io"
1111 },
1212 "scripts" : {
13- "build" : " cross-env NODE_OPTIONS=--max-old-space-size=8192 gatsby build" ,
13+ "build" : " cross-env BUILD_FULL_SITE=true NODE_OPTIONS=--max-old-space-size=8192 gatsby build" ,
1414 "clean" : " gatsby clean && rimraf node_modules" ,
15- "develop" : " cross-env NODE_OPTIONS=--max-old-space-size=8192 env-cmd -f .env.development gatsby develop" ,
15+ "develop" : " cross-env BUILD_FULL_SITE=true NODE_OPTIONS=--max-old-space-size=8192 env-cmd -f .env.development gatsby develop" ,
1616 "develop:lite" : " cross-env BUILD_FULL_SITE=false NODE_OPTIONS=--max-old-space-size=8192 env-cmd -f .env.development gatsby develop" ,
1717 "dev" : " npm run develop" ,
1818 "start" : " npm run develop" ,
You can’t perform that action at this time.
0 commit comments