-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.js
49 lines (40 loc) · 1.05 KB
/
nuxt.config.js
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
export default {
target: "static",
head: {
title: "Platz",
htmlAttrs: {
lang: "en",
},
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ hid: "description", name: "description", content: "" },
{ name: "format-detection", content: "telephone=no" },
],
link: [
{ rel: "icon", type: "image/x-icon", href: "/Logo.svg" },
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap",
},
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400&display=swap",
},
],
},
css: ["~/style/main.scss"],
plugins: [],
components: true,
buildModules: [
"@nuxtjs/moment",
"@nuxt/components",
"@nuxt/typescript-build",
],
modules: ["@nuxt/content", "@nuxtjs/google-gtag"],
content: {},
build: {},
"google-gtag": {
id: "G-X2J6J0J06X",
},
};