From e4a0abdebb31b38e4a44fd3287ca402c1f74d1ba Mon Sep 17 00:00:00 2001 From: ccbikai Date: Sun, 11 May 2025 13:46:55 +0800 Subject: [PATCH] fix: update link schema import path Changes import path from '@/' to '@@/' to align with correct module resolution configuration --- server/api/link/upsert.post.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/api/link/upsert.post.ts b/server/api/link/upsert.post.ts index 2b7da43..74ff4ee 100644 --- a/server/api/link/upsert.post.ts +++ b/server/api/link/upsert.post.ts @@ -1,4 +1,4 @@ -import { LinkSchema } from '@/schemas/link' +import { LinkSchema } from '@@/schemas/link' export default eventHandler(async (event) => { const link = await readValidatedBody(event, LinkSchema.parse)