forked from doocs/md
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.ts
50 lines (48 loc) · 1.2 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
import path from 'node:path'
import process from 'node:process'
import vue from '@vitejs/plugin-vue'
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 { defineConfig } from 'vite'
import { nodePolyfills } from 'vite-plugin-node-polyfills'
// https://vitejs.dev/config/
export default defineConfig({
base: process.env.SERVER_ENV === `NETLIFY` ? `` : ``, // 基本路径, 建议以绝对路径跟随访问目录
define: {
process,
},
plugins: [
vue(),
UnoCSS(),
// vueDevTools(),
nodePolyfills({
overrides: {
// Since `fs` is not supported in browsers, we can use the `memfs` package to polyfill it.
fs: `memfs`,
},
}),
AutoImport({
resolvers: [ElementPlusResolver()],
}),
Components({
resolvers: [ElementPlusResolver()],
}),
],
build: {
rollupOptions: {
input: {
index: path.resolve(__dirname, `index.html`),
},
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, `./src`),
},
},
css: {
devSourcemap: true,
},
})