Skip to content

Commit 8220f6d

Browse files
committed
adding env vars in next config
1 parent e373187 commit 8220f6d

5 files changed

Lines changed: 25 additions & 395 deletions

File tree

apps/app/next.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
import { vercelPreviewEnvVars } from "@propsto/constants/other";
12
import { type NextConfig } from "next";
23

34
export default {
5+
env: {
6+
...vercelPreviewEnvVars,
7+
},
48
reactStrictMode: true,
59
// We run these separately in CI, so we can skip them here.
610
eslint: { ignoreDuringBuilds: true },

apps/auth/next.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
import { vercelPreviewEnvVars } from "@propsto/constants/other";
12
import { type NextConfig } from "next";
23

34
export default {
5+
env: {
6+
...vercelPreviewEnvVars,
7+
},
48
images: {
59
remotePatterns: [
610
{ hostname: "*.public.blob.vercel-storage.com" },

examples/improved-dashboard-rsc.tsx

Lines changed: 0 additions & 377 deletions
This file was deleted.

0 commit comments

Comments
 (0)