From 32a84e201150b6781e21ce9e724df2b0f4631559 Mon Sep 17 00:00:00 2001 From: Lars Hampe Date: Tue, 5 Nov 2024 23:06:32 +0100 Subject: [PATCH] feat(api): try cors middleware on changelog routes --- apps/api/src/changelog/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/api/src/changelog/index.ts b/apps/api/src/changelog/index.ts index 86d45df..1e860a3 100644 --- a/apps/api/src/changelog/index.ts +++ b/apps/api/src/changelog/index.ts @@ -1,4 +1,5 @@ import { OpenAPIHono } from '@hono/zod-openapi' +import { cors } from 'hono/cors' import type { Variables } from '..' import { verifyAuthentication } from '../utils/authentication' import { type ContextModule, captureSentry } from '../utils/sentry' @@ -15,6 +16,7 @@ const app = new OpenAPIHono<{ Variables: Variables }>() const module: ContextModule = { name: 'changelog', } +app.use('*', cors()) app.route('/commit', changelogCommitApi) app.route('/version', version) app.openapi(ById.route, async (c) => {