fix: set trpc server version

This commit is contained in:
Henry
2024-11-01 08:51:01 +00:00
parent d5eece3ab8
commit 82b682b400
3 changed files with 2 additions and 2 deletions

BIN
bun.lockb

Binary file not shown.

View File

@@ -28,7 +28,7 @@
"@trpc/client": "next",
"@trpc/next": "next",
"@trpc/react-query": "next",
"@trpc/server": "next",
"@trpc/server": "^11.0.0-rc.566",
"@vercel/postgres": "^0.7.2",
"drizzle-orm": "^0.28.5",
"next": "^14.1.3",

View File

@@ -6,7 +6,7 @@ export const openApiDocument = generateOpenApiDocument(appRouter, {
title: "Kan API",
description: "OpenAPI compliant REST API",
version: "1.0.0",
baseUrl: "http://localhost:3000/api/v1",
baseUrl: `${process.env.WEBSITE_URL}/api/v1`,
docsUrl: "",
tags: ["auth", "users", "posts"],
});