This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnuxt.config.ts
115 lines (115 loc) · 2.8 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import packageJson from "./package.json";
export default defineNuxtConfig({
runtimeConfig: {
public: {
appVersion: packageJson.version,
appTitle: "Son Depremler, Deprem Analiz ve Canlı Takip",
appDescription:
"Deprem analizi yapabilir, son depremleri öğrenebilir tüm depremler ile karşılaştırabilirsiniz.",
},
},
vite: {
css: {
preprocessorOptions: {
scss: {
additionalData:
'@import "@/assets/scss/variables.scss"; @import "@/assets/scss/mixins.scss";',
},
},
},
},
css: [
"@/assets/scss/global.scss",
"@/assets/scss/fonts.scss",
"@/assets/scss/align.scss",
"@/assets/scss/typography.scss",
],
plugins: [
{
src: "@/plugins/dayjs.plugin.ts",
},
{
src: "@/plugins/gtm.plugin.ts",
mode: "client",
},
],
modules: ["@pinia/nuxt"],
app: {
head: {
charset: "utf-16",
viewport: "initial-scale=1",
title: "Zelzele.io - Son Depremler, Deprem Analiz ve Canlı Takip",
meta: [
{
name: "description",
content:
"Zelzele.io ile Deprem analizi yapabilir, son depremleri öğrenebilir tüm depremler ile karşılaştırabilirsiniz.",
},
{
name: "viewport",
content: "initial-scale=1, viewport-fit=cover",
},
{
name: "msapplication-TileColor",
content: "#ffffff",
},
{
name: "msapplication-TileImage",
content: "/ms-icon-144x144.png",
},
{
name: "theme-color",
content: "#ffffff",
},
{
property: "og:title",
content: "Son Depremler",
},
{
property: "og:description",
content:
"Son depremleri görüntüleyip, detayları öğrenin, geçmiş depremlerle grafiksel olarak kıyaslayın",
},
{
property: "og:image",
content: "https://zelzele.io/_nuxt/logo.4cb0c464.svg",
},
],
link: [
{
rel: "apple-touch-icon",
sizes: "57x57",
href: "/apple-icon-57x57.png",
},
{
rel: "manifest",
href: "/manifest.json",
},
{
rel: "icon",
type: "image/png",
sizes: "16x16",
href: "/favicon-16x16.png",
},
{
rel: "icon",
type: "image/png",
sizes: "96x96",
href: "/favicon-96x96.png",
},
{
rel: "icon",
type: "image/png",
sizes: "32x32",
href: "/favicon-32x32.png",
},
{
rel: "icon",
type: "image/png",
sizes: "192x192",
href: "/android-icon-192x192.png",
},
],
},
},
});