Skip to content
This repository has been archived by the owner on Jul 16, 2022. It is now read-only.

Commit

Permalink
fix(config): fix configuration store order
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Nov 6, 2018
1 parent d894fd6 commit 03fa960
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/config/src/stores.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,14 @@ module.exports = {

const stores = [
{
file,
file: `${ENV[env]}${DEFAULT_CONF_PATH}`,
type: NCONF_TYPE.FILE,
scope
scope: env
},
{
file: `${ENV[env]}${DEFAULT_CONF_PATH}`,
file,
type: NCONF_TYPE.FILE,
scope: env
scope
}
];

Expand Down

0 comments on commit 03fa960

Please sign in to comment.