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