From 63cc1db1d455590c2829b51969c69ececcf659cb Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Tue, 11 Nov 2025 11:51:04 +0800 Subject: [PATCH] fix(dashboard): resolve import path errors in extensionRuntime.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix AppShellBypass import path from '../../../lib/appShellBypass' to '../appShellBypass' - Correct relative path from src/lib/cms/extensionRuntime.ts to src/lib/appShellBypass.tsx - Resolves "Module not found" error during Next.js build 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- dashboard/src/lib/cms/extensionRuntime.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/lib/cms/extensionRuntime.ts b/dashboard/src/lib/cms/extensionRuntime.ts index 1ffedc1..3a9fddb 100644 --- a/dashboard/src/lib/cms/extensionRuntime.ts +++ b/dashboard/src/lib/cms/extensionRuntime.ts @@ -5,7 +5,7 @@ import type { CmsExtension, CmsTheme } from './types' import { appShellExtension } from './extensions/appShell' import { markdownSyncExtension } from './extensions/markdownSync' import defaultTheme from './themes/default' -import { AppShellBypass } from '../lib/appShellBypass' +import { AppShellBypass } from '../appShellBypass' const themeRegistry: Record = { default: defaultTheme,