Files
artsite/app/app.config.ts
Arthur DANJOU 2c545875d1 chore: update project dependencies and configuration
- Removed Tailwind CSS tag from the artchat project metadata.
- Updated @nuxtjs/mdc package version from ^0.19.1 to 0.19.2 in package.json.
- Added migrations_table and migrations_dir properties to the D1 database configuration in wrangler.jsonc.
2025-12-24 13:14:35 +01:00

26 lines
465 B
TypeScript

export default defineAppConfig({
ui: {
container: {
base: 'max-w-4xl'
},
colors: {
primary: 'neutral',
white: 'white',
black: 'black',
cyan: 'cyan',
gray: 'gray',
zinc: 'zinc',
neutral: 'neutral',
red: 'red',
amber: 'amber',
green: 'green',
emerald: 'emerald',
sky: 'sky',
blue: 'blue',
purple: 'purple',
pink: 'pink',
orange: 'orange'
}
}
})