diff --git a/config/scripts.yaml b/config/scripts.yaml index 18d2894b941..20e1df6b560 100644 --- a/config/scripts.yaml +++ b/config/scripts.yaml @@ -86,7 +86,7 @@ lab: i18n: 'SITE=lab node --conditions=internal ../shared/prebuild/i18n-only.mjs' lint: *nextLint prebuild: *sitePrebuild - start: *nextStart + start: 'cd ../org && yarn prebuild && cd - && yarn prebuild && yarn dev' sde: build: *nextBuild diff --git a/sites/lab/package.json b/sites/lab/package.json index 1793c5b5215..059cbc542a0 100644 --- a/sites/lab/package.json +++ b/sites/lab/package.json @@ -21,7 +21,7 @@ "i18n": "SITE=lab node --conditions=internal ../shared/prebuild/i18n-only.mjs", "lint": "next lint", "prebuild": "node --conditions=internal --experimental-json-modules ./prebuild.mjs", - "start": "yarn prebuild && yarn dev", + "start": "cd ../org && yarn prebuild && cd - && yarn prebuild && yarn dev", "wbuild": "next build", "prewbuild": "node --conditions=internal --experimental-json-modules ./prebuild.mjs" },