mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-01-31 19:54:35 +03:00
15 lines
312 B
JavaScript
15 lines
312 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var webpack = require('webpack');
|
||
|
var baseConfig = require('./webpack.config.base');
|
||
|
|
||
|
var config = Object.assign({}, baseConfig);
|
||
|
config.mode = 'production';
|
||
|
config.plugins = [
|
||
|
new webpack.DefinePlugin({
|
||
|
'process.env.NODE_ENV': JSON.stringify('production')
|
||
|
})
|
||
|
];
|
||
|
|
||
|
module.exports = config;
|