-
Notifications
You must be signed in to change notification settings - Fork 1
/
nuxt.config.js
33 lines (33 loc) · 1.04 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
module.exports = {
head: {
title: "scp",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{ hid: "description", name: "description", content: "scp" },
{ hid: "identifier-url", name: "identifier-url", content: "https://scp.vohzd.com" },
{ hid: "title", name: "title", content: "scp" },
{ hid: "description", name: "description", content: "music" },
{ hid: "keywords", name: "keywords", content: "scp, stories" },
{ hid: "author", name: "author", content: "vohzd" },
{ hid: "language", name: "language", content: "EN" },
{ hid: "robots", name: "robots", content: "All" }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
]
},
loading: { color: '#b56d82' },
build: {
optimizeCSS: true
},
modules: [
"@nuxtjs/axios",
["nuxt-matomo", { matomoUrl: "https://stats.apps.epitrade.io/", siteId: 4 }]
],
axios: {
baseURL: "/",
proxyHeaders: false,
credentials: true
},
}