Files
dwellops-platform/apps/web/i18n/routing.ts
2026-03-10 21:30:52 -03:00

13 lines
303 B
TypeScript

import { defineRouting } from 'next-intl/routing';
import { locales, defaultLocale } from '@dwellops/i18n';
/**
* next-intl routing configuration.
* Locale-prefixed routes: /en/dashboard, etc.
*/
export const routing = defineRouting({
locales,
defaultLocale,
localePrefix: 'always',
});