mirror of
https://github.com/zhigang1992/redux.git
synced 2026-06-13 01:28:51 +08:00
15 lines
328 B
JavaScript
15 lines
328 B
JavaScript
'use strict';
|
|
|
|
var webpack = require('webpack');
|
|
var baseConfig = require('./webpack.config.base');
|
|
|
|
var config = Object.create(baseConfig);
|
|
config.plugins = [
|
|
new webpack.optimize.OccurenceOrderPlugin(),
|
|
new webpack.DefinePlugin({
|
|
'process.env.NODE_ENV': JSON.stringify('development')
|
|
})
|
|
];
|
|
|
|
module.exports = config;
|