This repository was archived by the owner on Jul 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnuxt.config.ts
70 lines (69 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { defineNuxtConfig } from "nuxt3";
const description = "A community-built compatibility guide for Nuxt 3 modules";
const title = "Is Nuxt 3 Ready?";
const url = "https://isnuxt3ready.owln.ai/";
const ogImage = "https://isnuxt3ready.owln.ai/og.jpg";
export default defineNuxtConfig({
meta: {
htmlAttrs: {
lang: "en",
},
link: [
{
rel: "preconnect",
href: "https://rsms.me/",
},
{
rel: "stylesheet",
href: "https://rsms.me/inter/inter.css",
},
],
meta: [
{
name: "description",
content: description,
},
{
property: "og:url",
content: url,
},
{
property: "og:type",
content: "website",
},
{
property: "og:title",
content: title,
},
{
property: "og:description",
content: description,
},
{
property: "og:image",
content: ogImage,
},
{
name: "twitter:card",
content: "summary_large_image",
},
{
property: "twitter:domain",
content: url.split("/")[2],
},
{
property: "twitter:url",
content: url,
},
{
name: "twitter:title",
content: title,
},
{
name: "twitter:description",
content: description,
},
],
},
buildModules: ["nuxt-windicss"],
});