소스 검색

fix: il8n

Before 1 년 전
부모
커밋
00a91627f2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/i18n.ts

+ 1 - 1
src/i18n.ts

@@ -3,7 +3,7 @@ import { getRequestConfig } from "next-intl/server";
 import { notFound } from "next/navigation";
 
 const modulesFiles = require.context("../messages", true, /\.json$/);
-
+console.log(`🎯🎯🎯🎯🎯-> in i18n.ts on 6`);
 export const locales = modulesFiles.keys().map((modulePath: string) => {
     return modulePath.replace(/^\.\/(.*)\.\w+$/, "$1");
 });