summaryrefslogtreecommitdiff
path: root/src/lib/localeStaticPaths.ts
blob: 433f5dd5edd5ccfb12f892f13fd2f5cea3b4cedd (plain)
1
2
3
4
5
6
7
8
9
10
import type Locale from '$types/Locale';

// Defines what values to insert into the [locale] URL path parameter
// when generating a static site
const localeStaticPaths: { params: { locale: Locale } }[] = [
  { params: { locale: 'sco' } },
  { params: { locale: 'en-GB' } },
];

export default localeStaticPaths;