-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
executable file
·47 lines (47 loc) · 1.57 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
export default defineNuxtConfig({
ssr: false,
modules: ["@nuxtjs/tailwindcss", "nuxt-lazy-load"],
app: {
head: {
title: "كيسان للخدمات التعليمية",
viewport: "width=device-width, initial-scale=1",
charset: "utf-8",
meta: [
{
name: "description",
content:
"شركة كيسان للخدمات و الاستشارات التعليمية مختصة في الدراسة في الخارج و نعمل على مساعدة الطلاب الطموحين في الحصول على قبول جامعي من الخارج",
},
{
name: "og:image",
content:
"https://cdn.inicontent.com/kesan/74876_14wRVIbLNgNsCaXDD3o1bg.png",
},
],
link: [
{
rel: "icon",
href: "https://cdn.inicontent.com/inicontent/favicon_14wRVIbLNgNsCaXDD3o1bg.webp",
},
{ rel: "preconnect", href: "https://fonts.googleapis.com" },
{ rel: "preconnect", href: "https://fonts.gstatic.com" },
{
rel: "stylesheet",
href: "https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap",
},
],
script: [
{
src: "https://www.googletagmanager.com/gtag/js?id=AW-809304087",
async: true,
},
{
children: `window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'AW-809304087');`,
},
],
},
},
experimental: {
payloadExtraction: false,
},
});