mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
14 lines
209 B
TypeScript
14 lines
209 B
TypeScript
export default defineAppConfig({
|
|
toaster: {
|
|
position: 'bottom-right' as const,
|
|
expand: true,
|
|
duration: 5000
|
|
},
|
|
ui: {
|
|
colors: {
|
|
primary: 'green',
|
|
neutral: 'slate'
|
|
}
|
|
}
|
|
})
|