(locale: Locale, path: string, edition?: string)
| 13 | const basePath = getRootUrl(); |
| 14 | |
| 15 | function createLocalePath(locale: Locale, path: string, edition?: string) { |
| 16 | const baseLocalePath = |
| 17 | i18n.defaultLocale === locale ? basePath : `${basePath}/${locale}`; |
| 18 | return `${baseLocalePath}/${edition ? `${edition}/` : ""}${path}`; |
| 19 | } |
| 20 | |
| 21 | async function getAllConRoutes() { |
| 22 | const routes: string[] = []; |
no outgoing calls
no test coverage detected