Skip to content

Instantly share code, notes, and snippets.

@Deiru2k
Created November 24, 2015 12:18
Show Gist options
  • Save Deiru2k/8b1a82488656efa6996a to your computer and use it in GitHub Desktop.
Save Deiru2k/8b1a82488656efa6996a to your computer and use it in GitHub Desktop.
StringReplace
{ test: /\/src\/api.js$/, loader: StringReplacePlugin.replace({
replacements: [
{
pattern: /@apiUrl@/ig,
replacement: function (match, p1, offset, string) {
return myUrls[process.env.NODE_ENV];
}
}
]})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment