-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
40 lines (38 loc) · 997 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
29
30
31
32
33
34
35
36
37
38
39
40
import { defineConfig, loadEnv } from 'vite'
import { resolve, join } from 'path'
import react from '@vitejs/plugin-react'
const appSrc = resolve(__dirname, 'frontend/src')
const resolvePath = (relPath: string): string => join(appSrc, relPath)
// https://vitejs.dev/config/
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd())
return {
plugins: [react()],
root: 'frontend',
build: {
outDir: resolve(__dirname, './dist'),
assetsInlineLimit: 2048 // 2kb
},
css: {
preprocessorOptions: {
scss: {
includePaths: [ resolvePath('styles') ],
additionalData: '@import "variables";'
}
}
},
resolve: {
alias: {
'~': appSrc,
'@components': resolvePath('components'),
'@pages': resolvePath('pages')
}
},
server: {
// dev-server configuration
proxy: {
'/api': `http://127.0.0.1:${env.VITE_API_PORT}`
}
}
}
})