-
-
Notifications
You must be signed in to change notification settings - Fork 211
/
vite.config.ts
267 lines (241 loc) · 8.17 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
import { Buffer } from 'node:buffer'
import { basename, dirname, resolve } from 'node:path'
import MarkdownItShiki from '@shikijs/markdown-it'
import { rendererRich, transformerTwoslash } from '@shikijs/twoslash'
import Vue from '@vitejs/plugin-vue'
import fs from 'fs-extra'
import matter from 'gray-matter'
import anchor from 'markdown-it-anchor'
import GitHubAlerts from 'markdown-it-github-alerts'
import LinkAttributes from 'markdown-it-link-attributes'
import MarkdownItMagicLink from 'markdown-it-magic-link'
import UnoCSS from 'unocss/vite'
import AutoImport from 'unplugin-auto-import/vite'
import IconsResolver from 'unplugin-icons/resolver'
import Icons from 'unplugin-icons/vite'
import Components from 'unplugin-vue-components/vite'
import Markdown from 'unplugin-vue-markdown/vite'
import { VueRouterAutoImports } from 'unplugin-vue-router'
import VueRouter from 'unplugin-vue-router/vite'
import { defineConfig } from 'vite'
import Inspect from 'vite-plugin-inspect'
import Exclude from 'vite-plugin-optimize-exclude'
import SVG from 'vite-svg-loader'
// @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(),
VueRouter({
extensions: ['.vue', '.md'],
routesFolder: 'pages',
logs: true,
extendRoute(route) {
const path = route.components.get('default')
if (!path)
return
if (!path.includes('projects.md') && path.endsWith('.md')) {
const { data } = matter(fs.readFileSync(path, 'utf-8'))
route.addToMeta({
frontmatter: data,
})
}
},
}),
Vue({
include: [/\.vue$/, /\.md$/],
}),
Markdown({
wrapperComponent: id => id.includes('/demo/')
? 'WrapperDemo'
: '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, {
linksMap: {
'NuxtLabs': 'https://nuxtlabs.com',
'Vitest': 'https://github.com/vitest-dev/vitest',
'Slidev': 'https://github.com/slidevjs/slidev',
'VueUse': 'https://github.com/vueuse/vueuse',
'UnoCSS': 'https://github.com/unocss/unocss',
'Elk': 'https://github.com/elk-zone/elk',
'Type Challenges': 'https://github.com/type-challenges/type-challenges',
'Vue': 'https://github.com/vuejs/core',
'Nuxt': 'https://github.com/nuxt/nuxt',
'Vite': 'https://github.com/vitejs/vite',
'Shiki': 'https://github.com/shikijs/shiki',
'Twoslash': 'https://github.com/twoslashes/twoslash',
'ESLint Stylistic': 'https://github.com/eslint-stylistic/eslint-stylistic',
'Unplugin': 'https://github.com/unplugin',
'Nuxt DevTools': 'https://github.com/nuxt/devtools',
'Vite PWA': 'https://github.com/vite-pwa',
'i18n Ally': 'https://github.com/lokalise/i18n-ally',
'ESLint': 'https://github.com/eslint/eslint',
'Astro': 'https://github.com/withastro/astro',
'TwoSlash': 'https://github.com/twoslashes/twoslash',
'Anthony Fu Collective': { link: 'https://opencollective.com/antfu', imageUrl: 'https://github.com/antfu-collective.png' },
'Netlify': { link: 'https://netlify.com', imageUrl: 'https://github.com/netlify.png' },
'Stackblitz': { link: 'https://stackblitz.com', imageUrl: 'https://github.com/stackblitz.png' },
'Vercel': { link: 'https://vercel.com', imageUrl: 'https://github.com/vercel.png' },
},
imageOverrides: [
['https://github.com/vuejs/core', 'https://vuejs.org/logo.svg'],
['https://github.com/nuxt/nuxt', 'https://nuxt.com/assets/design-kit/icon-green.svg'],
['https://github.com/vitejs/vite', 'https://vitejs.dev/logo.svg'],
['https://github.com/sponsors', 'https://github.com/github.png'],
['https://github.com/sponsors/antfu', 'https://github.com/github.png'],
['https://nuxtlabs.com', 'https://github.com/nuxtlabs.png'],
[/opencollective\.com\/vite/, 'https://github.com/vitejs.png'],
[/opencollective\.com\/elk/, 'https://github.com/elk-zone.png'],
],
})
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://antfu.me/${path}`
})()
const head = defaults(frontmatter, options)
return { head, frontmatter }
},
}),
AutoImport({
imports: [
'vue',
VueRouterAutoImports,
'@vueuse/core',
],
}),
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',
}),
Exclude(),
{
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] || '')
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)
}
}