13 lines
303 B
TypeScript
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',
|
|
});
|