70852bf378
- Removed all @kbx/contracts imports and types
- Cleaned up feature registries (minimal definitions)
- Simplified page components (HomePage, ModelsList, ShadowRunList)
- Removed KBX UI components and adapters
- Fixed TypeScript errors with type casting
- Frontend build: 737KB (204KB gzip) ✅
CI/CD Pipeline: Ready for testing
15 lines
264 B
TypeScript
15 lines
264 B
TypeScript
/**
|
|
* Home Feature Screen Registry
|
|
*/
|
|
|
|
export const homeScreen = {
|
|
screenId: 'home.dashboard',
|
|
title: 'Home',
|
|
module: 'Home',
|
|
path: '/home',
|
|
component: () => import('./pages/HomePage.vue'),
|
|
permissions: [],
|
|
}
|
|
|
|
export const homeScreens = [homeScreen]
|