From f7d0e7c40324536e29a0f9c79e225e92920b2eb8 Mon Sep 17 00:00:00 2001 From: Dan Lemon Date: Mon, 1 Jun 2026 20:46:20 +0200 Subject: [PATCH] chore: fix frontend action --- frontend/tsconfig.json | 3 ++- frontend/vitest.config.ts | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index b575f7da..6a2b9052 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -36,6 +36,7 @@ ".next/dev/types/**/*.ts" ], "exclude": [ - "node_modules" + "node_modules", + "vitest.config.ts" ] } diff --git a/frontend/vitest.config.ts b/frontend/vitest.config.ts index 083ccc4e..ea022505 100644 --- a/frontend/vitest.config.ts +++ b/frontend/vitest.config.ts @@ -7,8 +7,10 @@ export default defineConfig({ globals: true, setupFiles: ["./src/test/setup.ts"], include: ["src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"], - deps: { - inline: ["cmdk"], + server: { + deps: { + inline: ["cmdk"], + }, }, }, resolve: {