diff --git a/docs/next.config.js b/docs/next.config.js index 178ad045e1cffb..2431e17d48a227 100644 --- a/docs/next.config.js +++ b/docs/next.config.js @@ -177,7 +177,8 @@ module.exports = { // We want to speed-up the build of pull requests. // For crowdin PRs we want to build all locales for testing. - if (process.env.PULL_REQUEST === 'true' && !l10nPRInNetlify) { + // TODO: don't build all on PRS + if (process.env.PULL_REQUEST !== 'true' && !l10nPRInNetlify) { // eslint-disable-next-line no-console console.log('Considering only English for SSR'); traverse(pages, 'en');