-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
88 lines (87 loc) · 2.16 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
import path from "node:path";
import { defineConfig } from "vite";
import Vue from "@vitejs/plugin-vue";
import Pages from "vite-plugin-pages";
import Layouts from "vite-plugin-vue-layouts";
import Components from "unplugin-vue-components/vite";
import AutoImport from "unplugin-auto-import/vite";
import Markdown from "vite-plugin-vue-markdown";
import LinkAttributes from "markdown-it-link-attributes";
import Unocss from "unocss/vite";
import Shiki from "markdown-it-shiki";
import VueMacros from "unplugin-vue-macros/vite";
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
additionalData: `@import "~/styles/variables.scss";`,
},
},
},
resolve: {
alias: {
"~/": `${path.resolve(__dirname, "src")}/`,
},
},
server: {
proxy: {
"/v1": {
target: "https://indiecloud.co/v1",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/v1/, ""),
},
},
watch: {
usePolling: true,
ignored: ["**/node_modules/**", "**/dist/**", "**/.git/**", "**/api/**"],
},
},
build: {
outDir: "web",
emptyOutDir: true,
},
plugins: [
VueMacros({
plugins: {
vue: Vue({
include: [/\.vue$/, /\.md$/],
}),
},
}),
Pages({
extensions: ["vue", "md"],
}),
Layouts(),
AutoImport({
imports: ["vue", "vue-router", "@vueuse/head", "@vueuse/core"],
dts: "src/auto-imports.d.ts",
dirs: ["src/composables", "src/stores", "src/types"],
vueTemplate: true,
}),
Components({
extensions: ["vue", "md"],
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
dts: "src/components.d.ts",
}),
Unocss(),
Markdown({
wrapperClasses: "prose prose-sm m-auto text-left",
headEnabled: true,
markdownItSetup(md) {
md.use(Shiki, {
theme: {
light: "vitesse-light",
dark: "vitesse-dark",
},
});
md.use(LinkAttributes, {
matcher: (link: string) => /^https?:\/\//.test(link),
attrs: {
target: "_blank",
rel: "noopener",
},
});
},
}),
],
});