finalize design package

This commit is contained in:
Eric Hulburd
2016-02-23 00:52:24 -06:00
parent a0cda06672
commit ce9cd68470
18 changed files with 149 additions and 211 deletions

View File

@@ -10,7 +10,7 @@ module.exports = {
},
output: {
filename: '[name].js',
path: CLIENT + '/build/development'
path: CLIENT + '/build/' + process.env.NODE_ENV
},
module: {
loaders: [
@@ -23,6 +23,9 @@ module.exports = {
}, {
test: /\.js$/,
loader: 'babel'
}, {
test: /\.json$/,
loader: 'json'
}
]
},
@@ -45,8 +48,8 @@ module.exports = {
},
resolve: {
alias: {
api: CLIENT + '/api/development',
config: CLIENT + '/config/development'
api: CLIENT + '/api/' + process.env.NODE_ENV,
config: CLIENT + '/config/' + process.env.NODE_ENV
}
}
}