Skip to content

Instantly share code, notes, and snippets.

@jacob-faber
Last active March 30, 2016 16:39
Show Gist options
  • Save jacob-faber/3a99d1126ac22a270d4ca12d224a1b1e to your computer and use it in GitHub Desktop.
Save jacob-faber/3a99d1126ac22a270d4ca12d224a1b1e to your computer and use it in GitHub Desktop.
Webpack debugger setup in Webstorm 11
var path = require('path');
var webpack = require('webpack');
module.exports = {
devtool: 'source-map',
entry: [
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/only-dev-server',
'./src/index'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: '/static/'
},
plugins: [
new webpack.HotModuleReplacementPlugin()
],
module: {
loaders: [{
test: /\.js$/,
loaders: ['react-hot', 'babel'],
include: path.join(__dirname, 'src')
}]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment