Newer
Older
var path = require("path")
var webpack = require('webpack')
var BundleTracker = require('webpack-bundle-tracker')
// override django's STATIC_URL for webpack bundles
config.output.publicPath = 'http://localhost:3000/app/'
// Add HotModuleReplacementPlugin and BundleTracker plugins
config.plugins = config.plugins.concat([
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
new BundleTracker({filename: './opentech/static_compiled/app/webpack-stats.json'}),
])
// Add a loader for JSX files with react-hot enabled
config.devServer = {
config.mode = "development"
module.exports = config