-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
42 lines (41 loc) · 973 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
css: ['~/assets/css/main.css', 'boxicons/css/boxicons.min.css'],
app: {
head: {
link: [
{ rel: 'icon', type: 'image', href: 'https://crafatar.com/avatars/cd2f08fb-eede-4b88-b1c1-6f3e46007171?size=100' }
]
},
},
components: [
{
path: '~/components',
pathPrefix: true,
},
],
// https://content.nuxtjs.org
content: {
documentDriven: true,
highlight: {
// See the available themes on https://github.com/shikijs/shiki/blob/main/docs/themes.md#all-theme
theme: {
dark: 'github-dark',
default: 'github-light'
}
},
markdown: {
// Allow custom Vue components
mdc: true,
},
},
modules: [
// 'vue-tippy/nuxt'
'@nuxt/content',
'@nuxt/image',
'@nuxtjs/tailwindcss',
],
plugins: [
{ src: "@/plugins/aos", ssr: false, mode: "client" }
],
})