try with relative imports

This commit is contained in:
Matteo Rosati
2026-01-26 15:50:21 +01:00
parent 787ef9a25c
commit 9cc83be629
3 changed files with 15 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
import { Hono } from "hono";
import { cors } from "hono/cors";
import { RegisterController } from "@/controllers/register";
import { LoginController } from "@/controllers/login";
import { RegisterController } from "../../src/controllers/register";
import { LoginController } from "../../src/controllers/login";
import { handle } from "hono/netlify";
const app = new Hono().basePath("/api");