-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
62 lines (57 loc) · 2 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
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
app: {
pageTransition: { name: 'page', mode: 'out-in' },
head :{
meta: [
// {meta name="viewport" content="width=device-width, initial-scale=1"}
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name:"msapplication-TileColor", content:"#da532c"},
{ name: "theme-color", content: "#22223b" },
//google-search-consoleب
{ name: "google-site-verification", content: "VL-0e5AFPu64JCmHXI-_f32d7XljaQFsaM2BC0y0lQw" }
],
script: [
// {script src="https://myawesome-lib.js"}{/script}
// { src: 'https://awesome-lib.js' }
],
link: [
// {link rel="stylesheet" href="https://myawesome-lib.css"}
{ rel:"stylesheet", href:"https://cdn.jsdelivr.net/gh/etmami/flaticon-uicons/uicons.css" },
{ rel:"stylesheet", href:"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap", },
{ rel:"stylesheet", href:"https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&display=swap" },
{ rel:"apple-touch-icon", sizes:"120x120", href:"/apple-touch-icon.png"},
{ rel:"icon", type:"image/png", sizes:"32x32", href:"/favicon-32x32.png"},
{ rel:"icon", type:"image/png", sizes:"16x16", href:"/favicon-16x16.png"},
{ rel:"manifest", href:"/site.webmanifest"},
{ rel:"mask-icon", href:"/safari-pinned-tab.svg", color:"#5bbad5"},
],
},
buildAssetsDir: 'nuxt',
},
// css: [
// '@/assets/css/index.css',
// ],
// image: {
// provider: 'static',
// dir: 'assets/img'
// },
// ssr: false,
// content: {
// experimental: {
// clientDB: true
// }
// }
modules: [
'@nuxtjs/tailwindcss',
'@nuxt/content',
'nuxt-gtag',
],
devtools: {
enabled: true,
},
gtag: {
id: 'G-Z4RVN7T083'
},
compatibilityDate: "2024-11-01",
})