Skip to content

Instantly share code, notes, and snippets.

@4knort
Last active March 5, 2019 15:46
Show Gist options
  • Save 4knort/6da1f67a4999a0d862ac5e2985b702b8 to your computer and use it in GitHub Desktop.
Save 4knort/6da1f67a4999a0d862ac5e2985b702b8 to your computer and use it in GitHub Desktop.
export function getConfig() {
let overrideConfig;
try{
overrideConfig= JSON.parse('{###JSON_CONFIG###}')
} catch {
overrideConfig = {}
}
return {
...defaultConfig,
...overrideConfig
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment