Replace all references to ASPNET_ENV with ASPNETCORE_ENVIRONMENT

This commit is contained in:
SteveSandersonMS
2016-04-07 15:23:34 +01:00
parent d19c0d7c16
commit 73caae2b78
11 changed files with 11 additions and 11 deletions

View File

@@ -2,7 +2,7 @@ var path = require('path');
var merge = require('extendify')({ isDeep: true, arrays: 'concat' });
var devConfig = require('./webpack.config.dev');
var prodConfig = require('./webpack.config.prod');
var isDevelopment = process.env.ASPNET_ENV === 'Development';
var isDevelopment = process.env.ASPNETCORE_ENVIRONMENT === 'Development';
module.exports = merge({
resolve: {