From 4214a604e66872278244828845e261844b9ae14f Mon Sep 17 00:00:00 2001 From: syhner <71605633+syhner@users.noreply.github.com> Date: Wed, 3 Apr 2024 13:03:15 +0200 Subject: [PATCH] fix import --- api/index.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/api/index.tsx b/api/index.tsx index 66de04d..63ccce7 100644 --- a/api/index.tsx +++ b/api/index.tsx @@ -1,10 +1,11 @@ /** - * This file is the entrypoint for all Vercel Functions. + * This file is the entrypoint for all Vercel Functions + * Imports should not uses path aliases defined in tsconfig.json */ import '../src/env'; // Validate env vars -import { createElysia } from '~/util/elysia'; +import { createElysia } from '../src/util/elysia'; // import { app } from '../src/app';