mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-12 04:37:06 +03:00
0864f28156
* Consolidate dependencies in react-json-tree examples * Do it differently * Update
32 lines
722 B
JavaScript
Executable File
32 lines
722 B
JavaScript
Executable File
var path = require('path');
|
|
var webpack = require('webpack');
|
|
|
|
var isProduction = process.env.NODE_ENV === 'production';
|
|
|
|
module.exports = {
|
|
mode: isProduction ? 'production' : 'development',
|
|
devtool: 'source-map',
|
|
entry: [
|
|
!isProduction && 'webpack-dev-server/client?http://localhost:3000',
|
|
!isProduction && 'webpack/hot/only-dev-server',
|
|
'./src/index'
|
|
].filter(Boolean),
|
|
output: {
|
|
path: path.join(__dirname, 'dist'),
|
|
filename: 'bundle.js',
|
|
publicPath: '/static/'
|
|
},
|
|
plugins: [
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
],
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'babel-loader',
|
|
include: path.join(__dirname, 'src')
|
|
}
|
|
]
|
|
}
|
|
};
|