434f45c97c
* Less repetition in webpack configs. Minify CSS classnames in production. * Ignore all optional deps of moment.js. Fixes #138 * Added target to webpack config * Automatically extract all 3rd party modules into a separate 'vendor' chunk * Inline only assets that are smaller than 10KB * Added autoprefixer options * Replaced sinfle babel transforms with the stage-1 preset. Cleaned up webpack configs. * Do not include hot module replacement in production
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
/* global module, __dirname, require */
|
|
const path = require('path');
|
|
const webpack = require('webpack');
|
|
const merge = require('webpack-merge');
|
|
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|
|
|
const HOST = 'localhost';
|
|
const PORT = '8080';
|
|
|
|
module.exports = merge.smart(require('./webpack.base.js'), {
|
|
entry: {
|
|
cms: [
|
|
'webpack/hot/dev-server',
|
|
`webpack-dev-server/client?http://${ HOST }:${ PORT }/`,
|
|
'react-hot-loader/patch',
|
|
'./index',
|
|
],
|
|
},
|
|
output: {
|
|
path: path.join(__dirname, 'dist'),
|
|
filename: '[name].js',
|
|
publicPath: `http://${ HOST }:${ PORT }/`,
|
|
},
|
|
context: path.join(__dirname, 'src'),
|
|
module: {
|
|
loaders: [
|
|
{
|
|
loader: 'babel',
|
|
test: /\.js?$/,
|
|
exclude: /node_modules/,
|
|
query: {
|
|
plugins: [
|
|
'react-hot-loader/babel',
|
|
],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin({
|
|
'process.env': {
|
|
NODE_ENV: JSON.stringify('development'),
|
|
},
|
|
}),
|
|
new webpack.optimize.OccurenceOrderPlugin(),
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
new webpack.NoErrorsPlugin(),
|
|
new ExtractTextPlugin('[name].css', { disable: true }),
|
|
],
|
|
devServer: {
|
|
hot: true,
|
|
contentBase: 'example/',
|
|
historyApiFallback: true,
|
|
devTool: 'cheap-module-source-map',
|
|
},
|
|
});
|