Skip to content

Commit

Permalink
Set to use sqlite by default when self-hosting
Browse files Browse the repository at this point in the history
  • Loading branch information
ajnart committed Oct 9, 2024
1 parent 1e2b18b commit 57cb5d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const env = createEnv({
*/
client: {
NEXT_PUBLIC_SHOW_KODU: z.enum(['true', 'false']).default('false'),
NEXT_PUBLIC_USE_SQLITE: z.enum(['true', 'false']).default('false'),
NEXT_PUBLIC_USE_SQLITE: z.enum(['true', 'false']).default('true'),
},

/**
Expand Down

0 comments on commit 57cb5d3

Please sign in to comment.