-
Notifications
You must be signed in to change notification settings - Fork 366
/
nuxt.schema.ts
38 lines (37 loc) · 974 Bytes
/
nuxt.schema.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { NuxtAwesomeAppConfig } from './app.config'
export default defineNuxtSchema({
appConfig: {
awesome: {
name: 'Nuxt 3 Awesome Starter',
description:
'a starter template for Nuxt 3 with minimalist themes design, built in components, drawer & menus, and more.',
project: {
links: {
github: 'https://github.com/viandwi24/nuxt3-awesome-starter',
},
},
layout: {
page: {
navbar: {
menus: [],
},
},
footer: {
year: 2023,
},
welcome: {
title: 'Nuxt 3 Awesome Starter',
disableInfoReplaceIndexInWelcomePage: true,
},
},
author: {
name: 'viandwi24',
links: {
github: 'https://github.com/viandwi24',
medium: 'https://viandwi24.medium.com',
website: 'https://viandwi24.site',
},
},
} as NuxtAwesomeAppConfig,
},
})