-
Notifications
You must be signed in to change notification settings - Fork 10
/
vite.config.ts
39 lines (38 loc) · 969 Bytes
/
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
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import eslint from 'vite-plugin-eslint'
import tsConfigPaths from 'vite-tsconfig-paths'
import vueJsx from '@vitejs/plugin-vue-jsx'
import path from 'path'
export default defineConfig({
base: '/',
plugins: [
vue(),
tsConfigPaths(),
vueJsx(),
eslint({
fix: true
})
],
esbuild: {
jsxFactory: 'h',
jsxFragment: 'Fragment'
},
server: {
open: true,
hmr: true
},
resolve: {
preserveSymlinks: true,
alias: {
'@': path.resolve(__dirname, 'src'),
assets: path.resolve(__dirname, 'src/assets'),
components: path.resolve(__dirname, 'src/components'),
styles: path.resolve(__dirname, 'src/styles'),
plugins: path.resolve(__dirname, 'src/plugins'),
views: path.resolve(__dirname, 'src/views'),
utils: path.resolve(__dirname, 'src/utils'),
apis: path.resolve(__dirname, 'src/apis')
}
}
})