-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
295 lines (267 loc) · 8.34 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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
import path, { basename, dirname, resolve } from 'node:path'
import { Buffer } from 'node:buffer'
import { defineConfig } from 'vite'
import Vue from '@vitejs/plugin-vue'
import generateSitemap from 'vite-ssg-sitemap'
import Layouts from 'vite-plugin-vue-layouts'
import Components from 'unplugin-vue-components/vite'
import AutoImport from 'unplugin-auto-import/vite'
import Markdown from 'unplugin-vue-markdown/vite'
import VueI18n from '@intlify/unplugin-vue-i18n/vite'
import { VitePWA } from 'vite-plugin-pwa'
import LinkAttributes from 'markdown-it-link-attributes'
import WebfontDownload from 'vite-plugin-webfont-dl'
import VueRouter from 'unplugin-vue-router/vite'
import { VueRouterAutoImports } from 'unplugin-vue-router'
import Pages from 'vite-plugin-pages'
import fs from 'fs-extra'
import matter from 'gray-matter'
import MarkdownItShiki from '@shikijs/markdown-it'
import { rendererRich, transformerTwoslash } from '@shikijs/twoslash'
import tailwind from 'tailwindcss'
import autoprefixer from 'autoprefixer'
import anchor from 'markdown-it-anchor'
import GitHubAlerts from 'markdown-it-github-alerts'
import TOC from 'markdown-it-table-of-contents'
import sharp from 'sharp'
import { slugify } from './scripts/slugify'
import operateBlogPlugin from './plugins/operate-blog'
const promises: Promise<any>[] = []
export default defineConfig({
base: '/Harry969.github.io/', // 设置为 GitHub 仓库名称
build: {
outDir: 'dist', // 生成的静态文件放在 dist 目录
assetsDir: '', // 将静态资源放到 dist 目录的根下,不再嵌套
rollupOptions: {
output: {
// 处理路径映射,确保在构建时路径正确
manualChunks: undefined,
},
},
},
css: {
postcss: {
plugins: [tailwind(), autoprefixer()],
},
},
resolve: {
alias: {
'~/': `${path.resolve(__dirname, 'src')}/`,
'@/': `${path.resolve(__dirname, 'src')}/`,
},
},
plugins: [
operateBlogPlugin(),
Vue({
include: [/\.vue$/, /\.md$/],
}),
Pages({
extensions: ['vue', 'md'],
dirs: [
{ dir: 'src/pages', baseRoute: '' },
// features dir for pages
{ dir: 'blog', baseRoute: 'blog' },
],
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,
description: data.desc,
},
},
)
}
return route
},
}),
// https://github.com/posva/unplugin-vue-router
VueRouter({
extensions: ['.vue', '.md'],
dts: 'src/typings/typed-router.d.ts',
}),
// https://github.com/JohnCampionJr/vite-plugin-vue-layouts
Layouts(),
// https://github.com/antfu/unplugin-auto-import
AutoImport({
imports: [
'vue',
'vue-i18n',
'@vueuse/head',
'@vueuse/core',
VueRouterAutoImports,
{
// add any other imports you were relying on
'vue-router/auto': ['useLink'],
},
],
dts: 'src/typings/auto-imports.d.ts',
dirs: [
'src/composables',
'src/stores',
],
vueTemplate: true,
}),
// https://github.com/antfu/unplugin-vue-components
Components({
// allow auto load markdown components under `./src/components/`
extensions: ['vue', 'md'],
// allow auto import and register components used in markdown
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
dts: 'src/typings/components.d.ts',
}),
// https://github.com/unplugin/unplugin-vue-markdown
Markdown({
wrapperComponent: id => id.includes('/demo/')
? 'WrapperDemo'
: 'WrapperPost',
wrapperClasses: (id, code) => code.includes('@layout-full-width')
? ''
: 'prose m-auto slide-enter-content',
headEnabled: true,
async markdownItSetup(md) {
// https://shiki.style/guide/
md.use(await MarkdownItShiki({
themes: {
dark: 'github-dark',
light: 'catppuccin-latte',
},
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 hidden">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path fill="currentColor" d="M3 4h18v2H3zm0 7h12v2H3zm0 7h18v2H3z"/></svg>
</div>
`,
})
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!.trim(), `public/${path}`, (frontmatter.date as string)),
)
frontmatter.image = `https://mmeme.me/${encodeURIComponent(path)}`
frontmatter.description = frontmatter?.desc as string || ''
})()
const head = defaults(frontmatter, options)
return { head, frontmatter }
},
}),
// https://github.com/antfu/vite-plugin-pwa
VitePWA({
selfDestroying: true, // 禁用了
registerType: 'autoUpdate',
includeAssets: ['favicon.svg', 'safari-pinned-tab.svg'],
manifest: {
name: 'Vitesse',
short_name: 'Vitesse',
theme_color: '#ffffff',
icons: [
{
src: '/pwa-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: '/pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable',
},
],
},
}),
// https://github.com/intlify/bundle-tools/tree/main/packages/unplugin-vue-i18n
VueI18n({
runtimeOnly: true,
compositionOnly: true,
fullInstall: true,
include: [path.resolve(__dirname, 'locales/**')],
}),
// https://github.com/feat-agency/vite-plugin-webfont-dl
WebfontDownload(),
],
// https://github.com/antfu/vite-ssg
ssgOptions: {
script: 'async',
formatting: 'minify',
crittersOptions: {
reduceInlineStyles: false,
},
onFinished() {
generateSitemap()
},
},
ssr: {
// TODO: workaround until they support native ESM
noExternal: ['workbox-window', /vue-i18n/],
},
})
const ogSVg = fs.readFileSync('./scripts/og-template.svg', 'utf-8')
async function generateOg(title: string, output: string, date: string) {
if (fs.existsSync(output))
return
await fs.mkdir(dirname(output), { recursive: true })
// breakline every 25 chars
const lines = title.trim().split(/(.{0,25})(?:\s|$)/g).filter(Boolean)
const data: Record<string, string> = {
line1: lines[0],
line2: lines[1] || date,
line3: lines[2] || date,
}
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)
}
}