-
Notifications
You must be signed in to change notification settings - Fork 13
/
vite.config.ts
53 lines (52 loc) · 1.42 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
// import { fileURLToPath, URL } from 'node:url'
import path, { resolve } from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import Components from 'unplugin-vue-components/vite'
import { AntDesignVueResolver } from 'unplugin-vue-components/resolvers'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
Components({
resolvers: [AntDesignVueResolver()]
})
],
resolve: {
alias: {
// '@': fileURLToPath(new URL('./src', import.meta.url)),
// '#': fileURLToPath(new URL('./src/types', import.meta.url)),
'@': resolve(__dirname, './src'),
'#': resolve(__dirname, './src/types')
}
// extensions: ['.vue']
// extensions:
// ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue']
},
server: {
// proxy: {
// '/api': {
// target: 'https://test-blog.helloworld.net/api/admin/',
// changeOrigin: true
// // rewrite: (path) => path.replace(/^\/api/, '')
// },
// '/static': {
// target: 'http://192.168.168.10:29091',
// changeOrigin: true
// }
// },
// hmr: true
},
css: {
preprocessorOptions: {
less: {
modifyVars: {
hack: `true; @import (reference) "${path.resolve('src/assets/css/base.less')}";`
},
javascriptEnabled: true
}
}
}
})