-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
31 lines (28 loc) · 1.27 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
import { defineConfig } from 'vite';
import path from 'path';
/* Plugins */
import react from '@vitejs/plugin-react-swc';
import tailwindcss from '@tailwindcss/vite';
import { TanStackRouterVite } from '@tanstack/router-plugin/vite';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss(), TanStackRouterVite()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
'@@assets': path.resolve(__dirname, './src/assets'),
'@@components': path.resolve(__dirname, './src/components'),
'@@containers': path.resolve(__dirname, './src/containers'),
'@@navigation': path.resolve(__dirname, './src/navigation'),
'@@pages': path.resolve(__dirname, './src/pages'),
'@@store': path.resolve(__dirname, './src/store'),
'@@types': path.resolve(__dirname, './src/types'),
/* Index specific aliases */
'@@constants': path.resolve(__dirname, './src/constants'),
'@@hooks': path.resolve(__dirname, './src/hooks'),
'@@theme': path.resolve(__dirname, './src/theme'),
'@@services': path.resolve(__dirname, './src/services'),
'@@utils': path.resolve(__dirname, './src/utils'),
}
}
});