- Move services/nextjs/ to nextjs/ - Move Dockerfile.prod to Dockerfile at root - Remove deploy/ folder (K8s manifests moved to K3S-HOME/web-apps) - Remove .gitea/ workflows - Update GitHub Actions for new structure - Remove develop branch triggers
10 lines
291 B
TypeScript
10 lines
291 B
TypeScript
import { defineRouting } from 'next-intl/routing';
|
|
import { createNavigation } from 'next-intl/navigation';
|
|
|
|
export const routing = defineRouting({
|
|
locales: ['ko', 'en', 'de'],
|
|
defaultLocale: 'ko'
|
|
});
|
|
|
|
export const { Link, redirect, usePathname, useRouter } = createNavigation(routing);
|