import { defineConfig } from '@kazzle/app'; export default defineConfig({ /** One-line catalog tagline. Required to publish. */ subtitle: '{{APP_NAME}}', icon: 'components/ui/public/favicon.svg', components: [ { name: 'ui', type: 'ui', path: './components/ui' }, { name: 'server', type: 'process', path: './components/server/index.ts', runtime: { dev: { command: 'bun run dev' }, prod: { command: 'bun run start' } } }, ], });