12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
import { defineRouting } from "next-intl/routing";
|
|
|
|
export const routing = defineRouting({
|
|
// A list of all locales that are supported
|
|
locales: ["en", "zh"],
|
|
|
|
// Used when no locale matches
|
|
defaultLocale: "zh",
|
|
|
|
localePrefix: "as-needed"
|
|
});
|