-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
92 lines (85 loc) · 2.37 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
import { defineConfig } from 'vite';
import Vue from '@vitejs/plugin-vue';
import HtmlMinifier from 'vite-plugin-html-minifier';
import WebExtension, { readJsonFile } from 'vite-plugin-web-extension';
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite';
import MarkdownItGithubAlerts from 'markdown-it-github-alerts';
import MarkdownItLinkAttr from 'markdown-it-link-attributes';
import MarkdownItTaskCheckbox from 'markdown-it-task-checkbox';
import UnoCSS from 'unocss/vite';
import AutoImport from 'unplugin-auto-import/vite';
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers';
import Components from 'unplugin-vue-components/vite';
import Markdown from 'unplugin-vue-markdown/vite';
import path from 'node:path';
import { fileURLToPath, URL } from 'node:url';
const target = process.env.TARGET || 'chrome';
function generateManifest() {
const manifest = readJsonFile('src/manifest.json');
const pkg = readJsonFile('package.json');
return {
name: '过早客 Plus',
description: pkg.description,
version: pkg.version,
...manifest,
};
}
export default defineConfig({
plugins: [
Vue({
include: [/\.vue$/, /\.md$/],
template: {
compilerOptions: {
isCustomElement: (tag) => {
return tag.startsWith('un-');
},
},
},
}),
VueI18nPlugin({
include: path.resolve(__dirname, './src/i18n/locales/**'),
}),
AutoImport({
dts: false,
resolvers: [ElementPlusResolver()],
}),
Components({
dts: false,
resolvers: [ElementPlusResolver()],
}),
UnoCSS(),
HtmlMinifier(),
Markdown({
markdownItSetup(md) {
md.use(MarkdownItGithubAlerts, {
titles: {
tip: '提示',
note: '注意',
important: '重要',
warning: '警告',
caution: '注意',
},
});
md.use(MarkdownItLinkAttr, {
attrs: {
target: '_blank',
},
});
md.use(MarkdownItTaskCheckbox);
},
}),
WebExtension({
browser: target,
manifest: generateManifest,
watchFilePaths: ['package.json', 'manifest.json'],
webExtConfig: {
startUrl: ['https://www.guozaoke.com/'],
},
}),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
});