fix(dashboard): resolve import path errors in extensionRuntime.ts

- 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 <noreply@anthropic.com>
This commit is contained in:
Haitao Pan 2025-11-11 11:51:04 +08:00
parent 8bf8f36a37
commit 63cc1db1d4

View File

@ -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<ThemeName, CmsTheme> = {
default: defaultTheme,