import { defineConfig } from '@kazzle/app'; export default defineConfig({ /** One-line catalog tagline. Required to publish. */ subtitle: '{{APP_NAME}}', /** Path to the app icon relative to the repo root. Uploaded to CDN on publish. */ icon: 'components/ui/public/favicon.svg', /** App components — each entry defines a deployable unit. Max 1 UI component. */ components: [ { name: '{{APP_NAME}}', type: 'ui', path: './components/ui' }, ], });