Files
Snigdha-OS.github.io/app.config.ts
2024-06-05 04:26:16 +05:30

16 lines
288 B
TypeScript

/*
* Nuxt 3 Config File
* https://nuxt.com/docs/getting-started/configuration#app-configuration
*/
export default defineAppConfig({
title: 'Hello Nuxt',
blog:{
enabled: true,
},
theme: {
dark: true,
colors: {
primary: '#ff0000'
}
}
})