-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvite.config.ts
54 lines (53 loc) · 1.51 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import vercel from 'vite-plugin-vercel'
import tsConfigPaths from 'vite-tsconfig-paths'
// https://vitejs.dev/config/
export default defineConfig(() => ({
resolve: {
dedupe: ['buffer', 'bn.js', 'keccak', 'ethers'],
},
plugins: [react(), vercel(), tsConfigPaths()],
vercel: {
expiration: 25,
additionalEndpoints: [
{
source: './src/api/hai/total-supply.ts',
destination: `/api/hai/total-supply`,
addRoute: true,
},
{
source: './src/api/hai/circulating-supply.ts',
destination: `/api/hai/circulating-supply`,
addRoute: true,
},
{
source: './src/api/kite/total-supply.ts',
destination: `/api/kite/total-supply`,
addRoute: true,
},
{
source: './src/api/kite/circulating-supply.ts',
destination: `/api/kite/circulating-supply`,
addRoute: true,
},
],
},
optimizeDeps: {
esbuildOptions: {
// Node.js global to browser globalThis
define: {
global: 'globalThis',
},
},
},
build: {
outDir: 'build',
},
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/setupTests.ts',
// css: true,
},
}))