Skip to content

Commit

Permalink
chore: move some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbrusegard committed Sep 22, 2024
1 parent 48dd88a commit fd476fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export const env = createEnv({
*/
runtimeEnv: {
NODE_ENV: process.env.NODE_ENV,
NEXT_PUBLIC_SITE_URL: process.env.NEXT_PUBLIC_SITE_URL,
DATABASE_HOST: process.env.DATABASE_HOST,
DATABASE_PORT: process.env.DATABASE_PORT,
DATABASE_USER: process.env.DATABASE_USER,
Expand All @@ -56,6 +55,7 @@ export const env = createEnv({
FEIDE_AUTHORIZATION_ENDPOINT: process.env.FEIDE_AUTHORIZATION_ENDPOINT,
FEIDE_TOKEN_ENDPOINT: process.env.FEIDE_TOKEN_ENDPOINT,
FEIDE_USERINFO_ENDPOINT: process.env.FEIDE_USERINFO_ENDPOINT,
NEXT_PUBLIC_SITE_URL: process.env.NEXT_PUBLIC_SITE_URL,
},
/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation. This is especially
Expand Down
1 change: 1 addition & 0 deletions src/lib/api/client.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
'use client';
import 'client-only';

import type { AppRouter } from '@/server/api/root';
import { createTRPCReact } from '@trpc/react-query';
Expand Down

0 comments on commit fd476fe

Please sign in to comment.