feat(i18n): add zh/en locale switching

This commit is contained in:
Leon-in
2026-04-29 10:36:24 +08:00
parent 437dc976fb
commit 3213f00b7b
11 changed files with 915 additions and 33 deletions
+9
View File
@@ -0,0 +1,9 @@
import { NextResponse } from "next/server"
export default function middleware() {
return NextResponse.next()
}
export const config = {
matcher: ["/((?!api|_next|_vercel|.*\\..*).*)"],
}