-
Notifications
You must be signed in to change notification settings - Fork 4
/
vite.config.ts
25 lines (22 loc) · 1 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
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: 'src', replacement: path.resolve(__dirname, 'src') },
{ 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') },
],
},
});