mirror of https://github.com/fspc/workstand.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
var path = require("path")
|
|
var webpack = require('webpack')
|
|
var BundleTracker = require('webpack-bundle-tracker')
|
|
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|
|
|
var config = require('./webpack.base.config.js')
|
|
|
|
// Use webpack dev server
|
|
config.entry = [
|
|
'webpack-dev-server/client?http://localhost:3000',
|
|
'webpack/hot/only-dev-server',
|
|
'./assets/js/index'
|
|
]
|
|
|
|
// override django's STATIC_URL for webpack bundles
|
|
config.output.publicPath = 'http://localhost:3000/assets/bundles/'
|
|
|
|
// Add HotModuleReplacementPlugin and BundleTracker plugins
|
|
config.plugins = config.plugins.concat([
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
new webpack.NoErrorsPlugin(),
|
|
new BundleTracker({filename: './webpack-stats.json'}),
|
|
new ExtractTextPlugin('react-toolbox.css', {allChunks: true}),
|
|
])
|
|
|
|
// Add a loader for JSX files with react-hot enabled
|
|
config.module.loaders.push(
|
|
{
|
|
test: /\.jsx?$/,
|
|
exclude: /node_modules/,
|
|
loaders: ['react-hot','babel-loader']
|
|
|
|
},
|
|
{
|
|
test: /(\.scss|\.css)$/,
|
|
loader: ExtractTextPlugin.extract('style', 'css?sourceMap&modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!postcss!sass?sourceMap!toolbox')
|
|
}
|
|
)
|
|
|
|
module.exports = config
|