-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
31 lines (30 loc) · 931 Bytes
/
vite.config.js
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 react from '@vitejs/plugin-react';
import path from 'node:path';
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
additionalData: `@import "@constants/colors.scss";
@import "@constants/fonts.scss";
@import "@constants/sizes.scss";`,
},
},
},
define: {
global: 'window',
},
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src/'),
'@api': path.resolve(__dirname, './src/api'),
'@assets': path.resolve(__dirname, './src/assets/'),
'@components': path.resolve(__dirname, './src/components/'),
'@constants': path.resolve(__dirname, './src/constants/'),
'@containers': path.resolve(__dirname, './src/containers/'),
'@helpers': path.resolve(__dirname, './src/helpers/'),
'@redux': path.resolve(__dirname, './src/redux/'),
},
},
});