Przeglądaj źródła

Add spaces after imports

arvid-e 4 miesięcy temu
rodzic
commit
6c2ff301e5
1 zmienionych plików z 4 dodań i 2 usunięć
  1. 4 2
      apps/app/src/server/util/locale-utils.ts

+ 4 - 2
apps/app/src/server/util/locale-utils.ts

@@ -1,7 +1,9 @@
-import { Lang } from '@growi/core/dist/interfaces';
 import { enUS, fr, ja, ko, type Locale, zhCN } from 'date-fns/locale';
 import type { IncomingHttpHeaders } from 'http';
-import * as i18nextConfig from '^/config/i18next.config';
+import { Lang } from '@growi/core/dist/interfaces';
+
+import * as i18nextConfig from '^/config/i18next.config'; // 4. Internal/Aliased
+
 
 const ACCEPT_LANG_MAP = {
   en: Lang.en_US,