mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 18:59:59 +01:00
- 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.
26 lines
465 B
TypeScript
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'
|
|
}
|
|
}
|
|
})
|