mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-06 04:35:18 +02:00
16 lines
288 B
TypeScript
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'
|
|
}
|
|
}
|
|
}) |