Files
brainstorming/app/app.config.ts
Alejandro Martinez 3bf17d5323 fix: disable SSR + add app.config for Nuxt UI colors
SSR causes 'Cannot read properties of null' with Nuxt UI v3 color
mode. Since this is an internal app, SPA mode works fine.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 16:39:20 +02:00

9 lines
118 B
TypeScript

export default defineAppConfig({
ui: {
colors: {
primary: 'indigo',
neutral: 'zinc',
},
},
})