-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
57 lines (48 loc) · 1.23 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
export default defineNuxtConfig({
ssr: true,
nitro: {
prerender: {
routes: ['/']
}
},
runtimeConfig: {
public: {
resume: process.env.RESUME
}
},
app: {
head: {
charset: 'UTF-8',
viewport: 'width=device-width, initial-scale=1',
title: 'Saransh',
meta: [
{ property: 'description', name: 'description', content: 'Portfolio of Saransh Kumar' },
{ property: 'og:title', name: 'og:title', content: 'Saransh' },
{ property: 'og:url', name: 'og:url', content: 'https://saranshkumar.me/' },
{ property: 'og:image', name: 'og:image', content: '/favicon.png' },
{ property: 'og:description', name: 'og:description', content: 'Portfolio of Saransh Kumar' },
{ property: 'og:type', name: 'og:type', content: 'website' }
],
link: [
{ rel: 'icon', href: '/favicon.png' }
]
}
},
css: [
'@/assets/styles.css'
],
devtools: { enabled: true },
modules: ['@nuxtjs/color-mode', '@nuxtjs/tailwindcss', '@nuxtjs/robots'],
colorMode: {
preference: 'dark',
fallback: 'dark',
classSuffix: ''
},
site: {
indexable: false
},
robots: {
disallow: ['*']
},
compatibilityDate: '2024-10-05'
})