chore: run prettier --write .

This commit is contained in:
Arvid Norlin
2024-02-19 14:24:30 +01:00
parent 7d51124b9f
commit 8a8c463452
71 changed files with 846 additions and 444 deletions

2
env/client.ts vendored
View File

@@ -5,4 +5,4 @@ export const env = createEnv({
client: {},
emptyStringAsUndefined: true,
runtimeEnv: {},
});
})

4
env/server.ts vendored
View File

@@ -1,5 +1,5 @@
import { createEnv } from "@t3-oss/env-nextjs"
import { z } from "zod";
import { z } from "zod"
export const env = createEnv({
server: {
@@ -23,4 +23,4 @@ export const env = createEnv({
NODE_ENV: process.env.NODE_ENV,
PRINT_QUERY: process.env.PRINT_QUERY,
},
});
})