Skip to content

Instantly share code, notes, and snippets.

@ibare
Created April 4, 2017 06:38
Show Gist options
  • Save ibare/715d07e52d90c82896537b4cb0c17d17 to your computer and use it in GitHub Desktop.
Save ibare/715d07e52d90c82896537b4cb0c17d17 to your computer and use it in GitHub Desktop.
// before
module.exports = {
api: {
development: {
apiUrl: ""
},
minor: {
apiUrl: ""
}
}
};
// after
module.exports = {
development: {
api: {
apiUrl: ""
}
},
minor: {
api: {
apiUrl: ""
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment