1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 07:13:32 +00:00

Reorganization a bit more. Updated readme with build/run instructions.

This commit is contained in:
Kyle Spearrin
2016-12-01 00:07:03 -05:00
parent b72a52232d
commit 3101e57c36
7 changed files with 23 additions and 16 deletions

View File

@@ -190,9 +190,9 @@ function config() {
constants: _.merge({}, {
appSettings: {
version: project.version,
environment: project.environment
environment: project.production ? 'Production' : 'Development'
}
}, require('./settings.' + project.environment + '.json') || {})
}, require('./settings' + (project.production ? '.Production' : '') + '.json') || {})
}));
}