8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
|
|
import { defineRouting } from 'next-intl/routing';
|
||
|
|
|
||
|
|
export const routing = defineRouting({
|
||
|
|
locales: ['en', 'pl'],
|
||
|
|
defaultLocale: 'en',
|
||
|
|
localePrefix: 'as-needed',
|
||
|
|
});
|