From ed28d7aea212847fcd530c34cc65e1817602df8f Mon Sep 17 00:00:00 2001 From: elpatron Date: Mon, 6 Oct 2025 17:28:48 +0200 Subject: [PATCH] server: switch CORS import to hono/cors (no @hono/cors dep) --- src/server/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/index.ts b/src/server/index.ts index 91faa86..efda680 100644 --- a/src/server/index.ts +++ b/src/server/index.ts @@ -1,7 +1,7 @@ import { Hono } from "hono"; import { serve } from '@hono/node-server'; import { serveStatic } from '@hono/node-server/serve-static'; -import { cors } from '@hono/cors'; +import { cors } from 'hono/cors'; import { rpcApp } from "./routes/rpc.js"; import { caldavApp } from "./routes/caldav.js";