fix: Add @kbx alias to vite.config, update screens.ts imports

- Add @kbx alias to vite config for @kbx/contracts resolution
- Update screens.ts to use KBX v60 ScreenDefinition contract
- Register 3 new pages: ShadowRunQueue (T06), ModelList (T02), ApprovalQueue (T03)

Fixes import resolution for KBX components in page registry.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-08-15 11:01:46 +09:00
parent 9d541a5982
commit 525efaa9c1
2 changed files with 57 additions and 50 deletions
+1
View File
@@ -10,6 +10,7 @@ export default defineConfig({
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
'@shared': fileURLToPath(new URL('./src/shared', import.meta.url)),
'@kbx': fileURLToPath(new URL('./src/shared/@kbx', import.meta.url)),
'@features': fileURLToPath(new URL('./src/features', import.meta.url)),
},
extensions: ['.ts', '.tsx', '.vue', '.js', '.jsx', '.json']