We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0e2593 commit 9babf10Copy full SHA for 9babf10
2 files changed
.gitignore
@@ -33,7 +33,7 @@ yarn-error.log*
33
# env files — ignore all local secrets but commit the example template
34
.env*
35
!.env.local.example
36
-
+.env.local
37
# vercel
38
.vercel
39
app/customize/types.ts
@@ -59,6 +59,7 @@ export const LANGUAGES = [
59
{ value: 'ko', label: 'Korean' },
60
{ value: 'fr', label: 'French' },
61
{ value: 'ja', label: 'Japanese' },
62
+ { value: 'de', label: 'German' },
63
] as const satisfies readonly { value: string; label: string }[];
64
65
export type Language = (typeof LANGUAGES)[number]['value'];
0 commit comments