Skip to content

Instantly share code, notes, and snippets.

@jsphstls
jsphstls / config.js
Created December 30, 2019 18:16
Environment Based Config
const SOME_KEY = 'someOption'
const something = {
development: {
[SOME_KEY]: 'for dev'
},
production: {
[SOME_KEY]: 'for prod'
},
test: {