-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
64 lines (63 loc) · 1.28 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
import { NuxtConfig } from '@nuxt/types'
export default <NuxtConfig> {
target: 'static',
components: true,
build: {
loaders: {
imgUrl: { limit: 0 }
}
},
buildModules: [
// https://tailwindcss.nuxtjs.org
'@nuxtjs/tailwindcss',
// https://typescript.nuxtjs.org/
'@nuxt/typescript-build',
// https://image.nuxtjs.org
'@nuxt/image',
// https://pwa.nuxtjs.org
'@nuxtjs/pwa',
// https://github.com/moritzsternemann/vue-plausible
'vue-plausible',
// https://html-validator.nuxtjs.org
'@nuxtjs/html-validator'
],
modules: [
// https://content.nuxtjs.org
'~/scripts/content',
'@nuxt/content'
],
plugins: [
'~/plugins/v-tooltip.ts'
],
content: {
dir: 'modules'
},
manifest: {
name: 'Nuxt Modules',
short_name: 'Nuxt Modules',
description: 'Explore Nuxt Modules',
theme_color: '#003c3c'
},
plausible: {
domain: 'modules-curated.vercel.app'
},
typescript: {
typeCheck: false
},
tailwindcss: {
jit: true
},
image: {
vercel: {},
screens: {
icon: 40,
avatar: 24
},
domains: [
'avatars0.githubusercontent.com',
'avatars1.githubusercontent.com',
'avatars2.githubusercontent.com',
'avatars3.githubusercontent.com'
]
}
}