fix: use next-runtime-env for baseUrl

This commit is contained in:
Henry
2025-11-27 22:37:26 +00:00
parent adbc945ed6
commit 58ff6ad041
2 changed files with 5 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
import { SignJWT } from "jose";
import { env } from "next-runtime-env";
const encoder = new TextEncoder();
@@ -14,7 +15,7 @@ const encoder = new TextEncoder();
export async function createEmailUnsubscribeLink(
userId: string,
): Promise<string | null> {
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL;
const baseUrl = env("NEXT_PUBLIC_BASE_URL");
const secret = process.env.EMAIL_UNSUBSCRIBE_SECRET;
if (!baseUrl || !secret) {