-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
28 lines (27 loc) · 998 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
import * as path from 'path'
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import legacy from '@vitejs/plugin-legacy'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
{
...legacy({
targets: ['defaults', 'not IE 11']
}),
apply: 'build'
}
],
resolve: {
alias: [
{ find: '@components', replacement: `${path.resolve(__dirname, 'src/components')}/` },
{ find: '@contexts', replacement: `${path.resolve(__dirname, 'src/contexts')}/` },
{ find: '@hooks', replacement: `${path.resolve(__dirname, 'src/hooks')}/` },
{ find: '@my-types', replacement: `${path.resolve(__dirname, 'src/my-types')}/` },
{ find: '@pages', replacement: `${path.resolve(__dirname, 'src/pages')}/` },
{ find: '@providers', replacement: `${path.resolve(__dirname, 'src/providers')}/` },
{ find: '@stores', replacement: `${path.resolve(__dirname, 'src/stores')}/` },
]
},
})