UNPKG

create-onetech-app

Version:

CLI to quickly set up React projects with popular templates and tools.

12 lines (9 loc) 342 B
import localeLanguages from "@/config/Languages"; import { defineRouting } from "next-intl/routing"; export const routing = defineRouting({ // A list of all locales that are supported locales: localeLanguages, // Used when no locale matches defaultLocale: "en", }); export type locale = (typeof routing.locales)[number];