From 17ef8735d03e4a4b216ec6abccca5bd226810ee3 Mon Sep 17 00:00:00 2001 From: Matteo Rosati Date: Mon, 26 Jan 2026 15:52:04 +0100 Subject: [PATCH] try with jsr: --- netlify/edge-functions/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netlify/edge-functions/index.ts b/netlify/edge-functions/index.ts index 4734fa7..519a878 100644 --- a/netlify/edge-functions/index.ts +++ b/netlify/edge-functions/index.ts @@ -1,5 +1,5 @@ -import { Hono } from "hono"; -import { cors } from "hono/cors"; +import { Hono } from "jsr:@hono/hono"; +import { cors } from "jsr:@hono/hono/netlify"; import { RegisterController } from "../../src/controllers/register"; import { LoginController } from "../../src/controllers/login"; import { handle } from "hono/netlify";