-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvite.config.ts
More file actions
81 lines (74 loc) · 1.48 KB
/
vite.config.ts
File metadata and controls
81 lines (74 loc) · 1.48 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import { sentryVitePlugin } from '@sentry/vite-plugin'
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { inProduction, inStaging, inCI } from './src/config'
// eslint-disable-next-line no-nested-ternary
const ciBase = '/'
const developmentBase = '/'
const stagingBase = '/gptwrapper'
const productionBase = '/chat'
let base = developmentBase
if (inStaging) {
base = stagingBase
}
if (inProduction) {
base = productionBase
}
if (inCI) {
base = ciBase
}
export default defineConfig({
plugins: [
react({
babel: {
plugins: [
// other Babel plugins
[
'@locator/babel-jsx/dist',
{
env: 'development',
},
],
],
},
}),
sentryVitePlugin({
org: 'sentry',
project: 'currechat-frontend',
url: 'https://toska.it.helsinki.fi/',
telemetry: false,
bundleSizeOptimizations: {
excludeDebugStatements: true,
},
}),
],
base,
build: {
minify: inCI ? false : 'esbuild',
sourcemap: true,
},
server: {
proxy: {
'/api/': {
target: 'http://localhost:8000',
changeOrigin: true,
secure: false,
},
},
watch: {
usePolling: true,
},
host: true,
strictPort: true,
port: 3000,
},
define: {
'process.env': process.env,
},
resolve: {
alias: {
'@shared': '/src/shared',
'@config': '/src/config.ts',
},
},
})