-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
71 lines (71 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
meta: [
{
hid: "og_title",
name: "og:title",
content:
"Check Chess | Check whether chessboard in in checkmate or in stalemate",
},
{
hid: "og_description",
name: "og:description",
content:
"Get the status of a chessboard, check whether the chessboard is in checkmate or stalemate",
},
{
hid: "og_description",
name: "description",
content:
"Get the status of a chessboard, check whether the chessboard is in checkmate or stalemate",
},
{
hid: "og_image",
name: "og:image",
content:
"https://ik.imagekit.io/wsosjkbekkj/check_chess_hpwYPZtsh.png?ik-sdk-version=javascript-1.4.3&updatedAt=1671374544358",
},
{
hid: "twitter_card_image_size",
name: "twitter:card",
content: "summary_large_image",
},
],
title:
"Check Chess | Check whether chessboard in in checkmate or in stalemate",
script: [
{
src: "https://www.googletagmanager.com/gtag/js?id=G-5GERBPC6YE",
async: true,
},
{
hid: "gtm",
children: `(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','G-5GERBPC6YE');`,
type: "text/javascript",
},
],
},
},
modules: [
"nuxt-icon",
"@nuxtjs/tailwindcss",
"@vueuse/nuxt",
"@kevinmarrec/nuxt-pwa",
],
pwa: {
meta: {
theme_color: "#769656",
},
},
nitro: {
prerender: {
routes: ['/404.html']
}
}
});