mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
feat: remove Webpack and depend on nodemon. feat: refactoring expenses. feat: optimize system users with caching. feat: architecture tenant optimize.
9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
import i18n from 'i18n';
|
|
import path from 'path';
|
|
|
|
export default () => i18n.configure({
|
|
locales: ['en', 'ar'],
|
|
register: global,
|
|
directory: path.join(global.__root, 'src/locales'),
|
|
updateFiles: false
|
|
}) |