insomnia/webpack/webpack.config.development.js

28 lines
712 B
JavaScript
Raw Normal View History

import webpack from 'webpack';
import baseConfig from './webpack.config.base';
export default {
...baseConfig,
debug: true,
devtool: 'eval-source-map',
entry: [
...baseConfig.entry,
'webpack-hot-middleware/client?path=http://localhost:3333/__webpack_hmr',
'webpack/hot/only-dev-server'
],
output: {
...baseConfig.output,
2016-07-18 20:10:18 +00:00
publicPath: 'http://localhost:3333/build/'
},
plugins: [
...baseConfig.plugins,
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.DefinePlugin({
__DEV__: true,
2016-08-17 22:44:03 +00:00
'process.env.NODE_ENV': JSON.stringify('development'),
'process.env.INSOMNIA_ENV': JSON.stringify('development')
})
]
}