-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
41 lines (40 loc) · 882 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
41
/// <reference types="vitest" />
import path from 'path';
import { defineConfig } from 'vite';
export default defineConfig({
root: 'src/',
publicDir: path.resolve(__dirname, 'public'),
base: '/systems/mythic/',
server: {
port: 30001,
open: true,
proxy: {
'^(?!/systems/mythic)': 'http://localhost:30000/',
'/socket.io': {
target: 'ws://localhost:30000',
ws: true,
},
},
},
build: {
outDir: path.resolve(__dirname, 'dist'),
emptyOutDir: true,
sourcemap: true,
brotliSize: true,
terserOptions: {
mangle: false,
keep_classnames: true,
keep_fnames: true,
},
lib: {
name: 'mythic',
entry: path.resolve(__dirname, 'src/mythic.ts'),
formats: ['es'],
fileName: 'mythic',
},
},
test: {
globals: true,
setupFiles: ['tests/setup.ts'],
},
});