generated from vueuse/vueuse-vite-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvite.config.ts
228 lines (202 loc) · 5.73 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
import { basename, dirname, resolve } from 'node:path'
import { defineConfig } from 'vite'
import fs from 'fs-extra'
import Pages from 'vite-plugin-pages'
import Inspect from 'vite-plugin-inspect'
import Icons from 'unplugin-icons/vite'
import IconsResolver from 'unplugin-icons/resolver'
import Components from 'unplugin-vue-components/vite'
import Markdown from 'unplugin-vue-markdown/vite'
import Vue from '@vitejs/plugin-vue'
import matter from 'gray-matter'
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 SVG from 'vite-svg-loader'
import MarkdownItShiki from '@shikijs/markdown-it'
import { rendererRich, transformerTwoslash } from '@shikijs/twoslash'
import MarkdownItMagicLink from 'markdown-it-magic-link'
// @ts-expect-error missing types
import TOC from 'markdown-it-table-of-contents'
import sharp from 'sharp'
import { slugify } from './scripts/slugify'
const promises: Promise<any>[] = []
export default defineConfig({
resolve: {
alias: [
{ find: '~/', replacement: `${resolve(__dirname, 'src')}/` },
],
},
optimizeDeps: {
include: [
'vue',
'vue-router',
'@vueuse/core',
'dayjs',
'dayjs/plugin/localizedFormat',
],
},
plugins: [
UnoCSS(),
Vue({
include: [/\.vue$/, /\.md$/],
script: {
defineModel: true,
},
}),
Pages({
extensions: ['vue', 'md'],
dirs: 'pages',
extendRoute(route) {
const path = resolve(__dirname, route.component.slice(1))
if (!path.includes('projects.md') && path.endsWith('.md')) {
const md = fs.readFileSync(path, 'utf-8')
const { data } = matter(md)
route.meta = Object.assign(route.meta || {}, { frontmatter: data })
}
return route
},
}),
Markdown({
wrapperComponent: 'WrapperPost',
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(MarkdownItMagicLink)
md.use(GitHubAlerts)
},
frontmatterPreprocess(frontmatter, options, id, defaults) {
(() => {
if (!id.endsWith('.md'))
return
const route = basename(id, '.md')
if (route === 'index' || frontmatter.image || !frontmatter.title)
return
const path = `og/${route}.png`
promises.push(
fs.existsSync(`${id.slice(0, -3)}.png`)
? fs.copy(`${id.slice(0, -3)}.png`, `public/${path}`)
: generateOg(frontmatter.title!.replace(/\s-\s.*$/, '').trim(), `public/${path}`),
)
frontmatter.image = `https://doctorwu.me/${path}`
})()
const head = defaults(frontmatter, options)
return { head, frontmatter }
},
}),
AutoImport({
imports: [
'vue',
'vue-router',
'@vueuse/core',
],
dirs: [
'./src/**/*',
],
}),
Components({
extensions: ['vue', 'md'],
dts: true,
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
resolvers: [
IconsResolver({
componentPrefix: '',
}),
],
}),
Inspect(),
Icons({
defaultClass: 'inline',
defaultStyle: 'vertical-align: sub;',
}),
SVG({
svgo: false,
defaultImport: 'url',
}),
{
name: 'await',
async closeBundle() {
await Promise.all(promises)
},
},
],
build: {
rollupOptions: {
onwarn(warning, next) {
if (warning.code !== 'UNUSED_EXTERNAL_IMPORT')
next(warning)
},
},
},
ssgOptions: {
formatting: 'minify',
},
})
const ogSVg = fs.readFileSync('./scripts/og-template.svg', 'utf-8')
async function generateOg(title: string, output: string) {
if (fs.existsSync(output))
return
await fs.mkdir(dirname(output), { recursive: true })
// breakline every 30 chars
const lines = title.trim().split(/(.{0,30})(?:\s|$)/g).filter(Boolean)
const data: Record<string, string> = {
line1: lines[0],
line2: lines[1],
line3: lines[2],
}
const svg = ogSVg.replace(/\{\{([^}]+)}}/g, (_, name) => data[name] || '')
// eslint-disable-next-line no-console
console.log(`Generating ${output}`)
try {
await sharp(Buffer.from(svg))
.resize(1200 * 1.1, 630 * 1.1)
.png()
.toFile(output)
}
catch (e) {
console.error('Failed to generate og image', e)
}
}