mirror of
https://github.com/wekan/wekan.git
synced 2026-02-06 16:41:48 +01:00
17 lines
261 B
JavaScript
17 lines
261 B
JavaScript
import { TAPi18n } from './tap';
|
|
import './accounts';
|
|
import './moment';
|
|
|
|
export { TAPi18n };
|
|
|
|
if (Meteor.isClient) {
|
|
(async () => {
|
|
await import('./blaze');
|
|
await TAPi18n.init();
|
|
})();
|
|
} else {
|
|
(async () => {
|
|
await TAPi18n.init();
|
|
})();
|
|
}
|
|
|