diff --git a/middleware.ts b/middleware.ts index 84b7412..4172d30 100644 --- a/middleware.ts +++ b/middleware.ts @@ -4,7 +4,7 @@ import { NextRequest, NextResponse } from 'next/server'; export function middleware(req: NextRequest) { // 지원되는 언어 목록 - const supportedLanguages = ['en', 'ko-KR']; + const supportedLanguages = ['en', 'ko']; // 요청 URL에서 pathname을 가져옵니다. const { nextUrl: url } = req; diff --git a/next-i18next.config.js b/next-i18next.config.js index 1ee6a5d..507f5d1 100644 --- a/next-i18next.config.js +++ b/next-i18next.config.js @@ -4,7 +4,7 @@ const path = require('path'); /** @type {import('next-i18next').UserConfig} */ module.exports = { i18n: { - locales: ['en', 'ko-KR'], // 지원하는 언어 목록 + locales: ['en', 'ko'], // 지원하는 언어 목록 defaultLocale: 'en', // 기본 언어 설정 // localeDetection: false, // 브라우저 언어 감지 기능을 비활성화하여 직접 제어 가능 }, diff --git a/public/locales/ko-KR/common.json b/public/locales/ko/common.json similarity index 100% rename from public/locales/ko-KR/common.json rename to public/locales/ko/common.json diff --git a/src/constant/locales.ts b/src/constant/locales.ts index a9f507a..34b6fd9 100644 --- a/src/constant/locales.ts +++ b/src/constant/locales.ts @@ -1,4 +1,4 @@ export const cLocales = { - ko: 'ko-KR', + ko: 'ko', en: 'en', } as const;