-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
116 lines (106 loc) · 2.86 KB
/
vite.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import { resolve } from 'node:path'
import { defineConfig } from 'vite'
import Inspect from 'vite-plugin-inspect'
import Components from 'unplugin-vue-components/vite'
import Markdown from 'unplugin-vue-markdown/vite'
import Vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import anchor from 'markdown-it-anchor'
import LinkAttributes from 'markdown-it-link-attributes'
import GitHubAlerts from 'markdown-it-github-alerts'
import UnoCSS from 'unocss/vite'
import MarkdownItShiki from '@shikijs/markdown-it'
import { rendererRich, transformerTwoslash } from '@shikijs/twoslash'
import vueDevTools from 'vite-plugin-vue-devtools'
import { unheadVueComposablesImports } from '@unhead/vue'
// @ts-expect-error missing types
import TOC from 'markdown-it-table-of-contents'
import { slugify } from './scripts/slugify'
export default defineConfig({
server: {
port: 3334
},
resolve: {
alias: [
{ find: '@/', replacement: `${resolve(__dirname, 'src')}/` }
]
},
optimizeDeps: {
include: [
'vue',
'vue-router',
'@vueuse/core'
]
},
plugins: [
UnoCSS(),
vueDevTools(),
Vue({
include: [/\.vue$/, /\.md$/],
script: {
defineModel: true
}
}),
Markdown({
wrapperClasses: (id, code) => code.includes('@layout-full-width')
? ''
: 'prose m-auto slide-enter-content',
headEnabled: true,
exportFrontmatter: false,
exposeFrontmatter: false,
exposeExcerpt: false,
markdownItOptions: {
quotes: '""\'\''
},
async markdownItSetup(md) {
md.use(await MarkdownItShiki({
themes: {
dark: 'vitesse-dark',
light: 'vitesse-light'
},
defaultColor: false,
cssVariablePrefix: '--s-',
transformers: [
transformerTwoslash({
explicitTrigger: true,
renderer: rendererRich()
})
]
}))
md.use(anchor, {
slugify,
permalink: anchor.permalink.linkInsideHeader({
symbol: '#',
renderAttrs: () => ({ 'aria-hidden': 'true' })
})
})
md.use(LinkAttributes, {
matcher: (link: string) => /^https?:\/\//.test(link),
attrs: {
target: '_blank',
rel: 'noopener'
}
})
md.use(TOC, {
includeLevel: [1, 2, 3, 4],
slugify,
containerHeaderHtml: '<div class="table-of-contents-anchor"><div class="i-ri-menu-2-fill" /></div>'
})
md.use(GitHubAlerts)
}
}),
AutoImport({
imports: [
'vue',
'@vueuse/core',
unheadVueComposablesImports
]
}),
Components({
extensions: ['vue', 'md'],
dts: true,
include: [/\.vue$/, /\.vue\?vue/, /\.md$/]
}),
Inspect()
]
})