Skip to content

Instantly share code, notes, and snippets.

@MoOx
Created January 10, 2016 20:51
Show Gist options
  • Save MoOx/c718e512ff43086ef275 to your computer and use it in GitHub Desktop.
Save MoOx/c718e512ff43086ef275 to your computer and use it in GitHub Desktop.
Example of conditional conf with spread
const DEV = process.argv.includes("--dev")
const PROD = process.argv.includes("--production")
export default {
common: "stuff",
...DEV && {
just: "for dev"
},
...PROD && {
just: "for prod",
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment