dev and prod seem to be the wrong way round

This commit is contained in:
Phil Holden 2015-10-13 12:28:02 +01:00
parent 79b51a7c0f
commit 166f54704e

View File

@ -1,4 +1,4 @@
if (process.env.NODE_ENV === 'development') {
if (process.env.NODE_ENV === 'production') {
module.exports = require('./configureStore.prod');
} else {
module.exports = require('./configureStore.dev');