Skip to content

Instantly share code, notes, and snippets.

@esahione
Last active March 18, 2016 22:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esahione/c305121816040f849547 to your computer and use it in GitHub Desktop.
Save esahione/c305121816040f849547 to your computer and use it in GitHub Desktop.
Webpack Development Configuration File
var webpack = require('webpack')
var merge = require('webpack-merge')
var baseConfig = require('./webpack.base.conf')
var HtmlWebpackPlugin = require('html-webpack-plugin')
// add hot-reload related code to entry chunks
Object.keys(baseConfig.entry).forEach(function (name) {
baseConfig.entry[name] = ['./build/dev-client'].concat(baseConfig.entry[name])
})
module.exports = merge(baseConfig, {
// eval-source-map is faster for development
devtool: '#eval-source-map',
output: {
// necessary for the html plugin to work properly
// when serving the html from in-memory
publicPath: '/'
},
plugins: [
// https://github.com/glenjamin/webpack-hot-middleware#installation--usage
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'build/index.template.html',
inject: true
})
]
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment