Skip to content

Instantly share code, notes, and snippets.

@jrichardsz
Created November 24, 2019 17:05
Show Gist options
  • Save jrichardsz/1d11120dab4764f4d7f42faf6460997f to your computer and use it in GitHub Desktop.
Save jrichardsz/1d11120dab4764f4d7f42faf6460997f to your computer and use it in GitHub Desktop.
inject global javascript variable using webpack
export DEV_SETTINGS_URL=http://localhost:6666/settings.json
plugins: [
new webpack.DefinePlugin({
DEV_SETTINGS_URL: JSON.stringify(process.env.DEV_SETTINGS_URL)
})
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment