#Types for AppConfig
2 messages · Page 1 of 1 (latest)
This is an example of my config:
export default defineAppConfig({
ui: {
primary: 'blue',
gray: 'zinc',
},
search: {
groups: [
{
key: 'job',
label: 'Job',
commands: [
{ id: 'launch', label: 'Launch', to: '/job/launch' },
]
},
]
}
})