Skip to content

Instantly share code, notes, and snippets.

@pikeas
Created October 16, 2014 21:23
Show Gist options
  • Save pikeas/d93433e6adb1bc95edc5 to your computer and use it in GitHub Desktop.
Save pikeas/d93433e6adb1bc95edc5 to your computer and use it in GitHub Desktop.
# Relevant bits only
{
entry: {
main: [
'webpack-dev-server/client?http://localhost:8080',
'webpack/hot/only-dev-server',
...
]
vendor: ['jquery', 'react', 'reflux', 'react/lib/ReactComponentBrowserEnvironment']
}
module: {
loaders: [{test: '.jsx', loader: 'react-hot!jsx?harmony'}, ...]
}
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
...
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment