Skip to content

Commit

Permalink
chore: Add asset prefixes for es and pt
Browse files Browse the repository at this point in the history
  • Loading branch information
LizBaker committed Mar 5, 2024
1 parent e2d0985 commit 69dbbae
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions env.js
Expand Up @@ -10,6 +10,12 @@ const assetPrefix = () => {
if (process.env.BUILD_LANG === 'kr') {
return 'https://docs-website-kr.netlify.app';
}
if (process.env.BUILD_LANG === 'es') {
return 'https://docs-website-es.netlify.app';
}
if (process.env.BUILD_LANG === 'pt') {
return 'https://docs-website-pt.netlify.app';
}
return '';
};

Expand Down

0 comments on commit 69dbbae

Please sign in to comment.