-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
executable file
·48 lines (45 loc) · 1.02 KB
/
nuxt.config.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
39
40
41
42
43
44
45
46
47
48
export default defineNuxtConfig({
// https://github.com/nuxt-themes/docus
extends: "@nuxt-themes/docus",
devtools: { enabled: true },
modules: ["@nuxtjs/tailwindcss"],
app: {
head: {
meta: [
{
property: "og:title",
content: "BountyHub Docs",
},
{
property: "og:site_name",
content: "BountyHub",
},
{
property: "og:description",
content: "BountyHub platform documentation",
},
{
property: "og:image",
content: "https://bountyhub.org/assets/logo_whitebg.png",
},
{
property: "og:image:width",
content: "500",
},
{
property: "og:image:height",
content: "500",
},
{
property: "og:url",
content: "https://docs.bountyhub.org",
},
{
property: "og:type",
content: "website",
},
],
},
},
compatibilityDate: "2024-09-14",
});