-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
53 lines (46 loc) · 966 Bytes
/
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
// https://nuxt.com/docs/api/configuration/nuxt-config
import tailwindConfig from "./tailwind.config"
export default defineNuxtConfig({
experimental: { appManifest: false },
site: { url: 'https://mirandola2.it' } ,
app: {
head: {
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
meta: [{name: 'theme-color', content: '#462678'}],
}
},
modules: [
'@nuxtjs/tailwindcss',
'@nuxt/content',
'@nuxt/image',
'@nuxt/fonts',
'@nuxtjs/sitemap'
],
fonts: {
defaults: {
weights: [400, 700],
styles: ['normal', 'italic'],
subsets: [
'latin'
]
},
},
image: {
provider: 'imagekit',
imagekit: {
baseURL: 'https://ik.imagekit.io/mir2',
}
},
content: {
ignores: [
'/content/index.md',
'totem'
],
markdown: {
anchorLinks: false
},
documentDriven: true,
},
compatibilityDate: '2024-11-11'
})