Skip to content

Commit

Permalink
Merge pull request #23 from janwo/patch-1
Browse files Browse the repository at this point in the history
autoreload default is false - fix this when no ENV is set
  • Loading branch information
niftylettuce authored Nov 11, 2020
2 parents 112c8bd + 8e98a39 commit 3260413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class I18N {
indent: ' ',
defaultLocale: 'en',
syncFiles: boolean(process.env.I18N_SYNC_FILES || true),
autoReload: boolean(process.env.I18N_AUTO_RELOAD || true),
autoReload: boolean(process.env.I18N_AUTO_RELOAD || false),
updateFiles: boolean(process.env.I18N_UPDATE_FILES || true),
api: {
__: 't',
Expand Down

0 comments on commit 3260413

Please sign in to comment.