Skip to content

Instantly share code, notes, and snippets.

@aloerina01
Created February 22, 2017 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aloerina01/5056c587e828980655b15547409c30c2 to your computer and use it in GitHub Desktop.
Save aloerina01/5056c587e828980655b15547409c30c2 to your computer and use it in GitHub Desktop.
NODE_ENVを見て読み込むファイルを切り替える方法
const config = {
API_ORIGIN: 'https://example-beta.com/api/' // 開発環境用
}
module.exports = config;
const config = {
API_ORIGIN: 'https://example.com/api/'
}
module.exports = config;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment