-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
56 lines (54 loc) · 1.31 KB
/
vite.config.ts
File metadata and controls
56 lines (54 loc) · 1.31 KB
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
import Components from "unplugin-vue-components/vite";
import AutoImport from "unplugin-auto-import/vite";
import Icons from "unplugin-icons/vite";
import IconsResolver from "unplugin-icons/resolver";
import vueJsx from "@vitejs/plugin-vue-jsx";
import { defineConfig } from "vite";
import { resolve } from "path";
export default defineConfig({
server: {
port: 3000,
},
resolve: {
alias: {
"@/": `${resolve(__dirname, "src")}/`,
},
},
esbuild: {
jsxFactory: "h",
jsxFragment: "Fragment",
},
plugins: [
vueJsx({}),
Icons(),
// https://github.com/antfu/unplugin-auto-import
AutoImport({
imports: ["vue", "vue/macros", "@vueuse/core"],
dts: true,
dirs: [
"./.vitepress/theme/components",
"./.vitepress/theme/shortcuts",
"./.vitepress/theme/utils",
"./src/components",
"./src/shortcuts",
"./src/utils",
"./src/types",
],
vueTemplate: true,
eslintrc: {
enabled: true,
},
}),
// https://github.com/antfu/vite-plugin-components
Components({
dts: true,
dirs: [
"./.vitepress/theme/components",
"./.vitepress/theme/shortcuts",
"./src/components",
"./src/shortcuts",
],
resolvers: [IconsResolver()],
}),
],
});