-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
37 lines (37 loc) · 872 Bytes
/
nuxt.config.ts
File metadata and controls
37 lines (37 loc) · 872 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
// https://nuxt.com/docs/api/configuration/nuxt-config
import tailwindcss from '@tailwindcss/vite'
export default defineNuxtConfig({
compatibilityDate: '2025-05-15',
devtools: { enabled: true },
app: {
head: {
title: "godiscord",
meta: [
{
name: "google-site-verification",
content: "w6I7NxoiHb1ooEJ-dbj-mrfLbjSdBkcHQuQvtX5XDME",
}
],
link: [
{ rel: 'icon', type: 'image/x-icon' ,href: '/favicon.ico' }
]
}
},
site: {
url: 'https://godiscord.foo.ng',
name: 'godiscord',
description: 'godiscord is a Go library to make Discord bots.',
defaultLocale: 'en',
},
modules: [
'@nuxtjs/tailwindcss',
'@nuxt/fonts',
'@nuxt/icon',
'@nuxt/image',
'@nuxt/eslint',
'@nuxt/content',
'@nuxt/scripts',
'@nuxtjs/seo',
'@vueuse/nuxt',
],
})