Files
goodgo-platform/apps/web/i18n/routing.ts
Ho Ngoc Hai 4d91c04b88 docs: add comprehensive K6 load testing guide with API structure
- Document all API endpoints (auth, listings, payments, search)
- Include DTOs and request/response body shapes
- Document authentication methods and rate limits
- Provide database and environment configuration
- Include existing test setup (Playwright, Vitest)
- Detail CI/CD pipeline structure
- Recommend K6 endpoints and test patterns
- Provide file location references for quick lookup

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-09 01:34:15 +07:00

9 lines
203 B
TypeScript

import { defineRouting } from 'next-intl/routing';
import { locales, defaultLocale } from './config';
export const routing = defineRouting({
locales,
defaultLocale,
localePrefix: 'as-needed',
});