@@ -2,13 +2,16 @@ import { TAPi18n } from './tap';
import './accounts';
import './moment';
-if (Meteor.isClient) {
- import './blaze';
-}
-
export { TAPi18n };
-(async () => {
- await TAPi18n.init();
-})();
+if (Meteor.isClient) {
+ (async () => {
+ await import('./blaze');
+ await TAPi18n.init();
+ })();
+} else {
+}