9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
import { defaultLocale, locales } from "@cms/i18n"
|
|
import { defineRouting } from "next-intl/routing"
|
|
|
|
export const routing = defineRouting({
|
|
locales: [...locales],
|
|
defaultLocale,
|
|
localePrefix: "never",
|
|
})
|