blob: fbe828a5a605d0246f2cef95ecfe848c95e1f94a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import svgr from 'vite-plugin-svgr';
import { VitePWA } from 'vite-plugin-pwa'
export default defineConfig(() => {
return {
server: {
port: 3000,
proxy: {
'/api/socket': 'ws://localhost:8082',
'/api': 'http://localhost:8082',
},
},
build: {
outDir: 'build',
},
plugins: [svgr(), react(), VitePWA()],
};
});
|