UNPKG

react-redux-provide

Version:

Build your UI with React. Manage application state with Redux providers. Persist and share application state with replication. Use pure functions everywhere.

15 lines (11 loc) 328 B
'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;