fix: update link schema import path

Changes import path from '@/' to '@@/' to align with
correct module resolution configuration
This commit is contained in:
ccbikai 2025-05-11 13:46:55 +08:00
parent d774b108a5
commit e4a0abdebb

View file

@ -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)