forked from ASAP-as-soon-as-possible/ASAP_Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
24 lines (21 loc) · 958 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
import path from 'path';
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import macrosPlugin from 'vite-plugin-babel-macros';
import svgr from 'vite-plugin-svgr';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), macrosPlugin(), svgr()],
resolve: {
alias: [
// { find: '/', replacement: path.resolve(__dirname, '/') },
{ find: 'pages', replacement: path.resolve(__dirname, 'src/pages') },
{ find: 'components', replacement: path.resolve(__dirname, 'src/components') },
{ find: 'assets', replacement: path.resolve(__dirname, 'src/assets') },
{ find: 'styles', replacement: path.resolve(__dirname, 'src/styles') },
{ find: 'hooks', replacement: path.resolve(__dirname, 'src/hooks') },
{ find: 'utils', replacement: path.resolve(__dirname, 'src/utils') },
{ find: 'atoms', replacement: path.resolve(__dirname, 'src/atoms') },
],
},
});