forked from nuxt-modules/html-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.ts
More file actions
37 lines (37 loc) · 909 Bytes
/
app.config.ts
File metadata and controls
37 lines (37 loc) · 909 Bytes
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
export default defineAppConfig({
header: {
title: '@nuxtjs/html-validator',
logo: {
light: '/logo-light.svg',
dark: '/logo-dark.svg',
alt: 'HTML Validator Logo',
},
},
socials: {
github: 'https://github.com/nuxt-modules/html-validator',
},
seo: {
url: 'https://html-validator.nuxtjs.org',
description:
'Automatically validate Nuxt server-rendered HTML (SSR and SSG) to detect common issues with HTML that can lead to hydration errors, as well as improve accessibility and best practice.',
image: 'https://html-validator.nuxtjs.org/preview.png',
},
ui: {
colors: {
primary: 'green',
},
},
toc: {
bottom: {
title: 'Community',
links: [
{
icon: 'i-lucide-book-open',
label: 'Nuxt docs',
to: 'https://nuxt.com',
target: '_blank',
},
],
},
},
})