traccar-web/modern/vite.config.js

19 lines
416 B
JavaScript
Raw Normal View History

2023-08-20 04:58:45 +08:00
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import svgr from 'vite-plugin-svgr';
2023-08-20 05:02:52 +08:00
import { VitePWA } from 'vite-plugin-pwa';
2023-08-20 04:58:45 +08:00
2023-08-20 05:02:52 +08:00
export default defineConfig(() => ({
server: {
port: 3000,
proxy: {
'/api/socket': 'ws://localhost:8082',
'/api': 'http://localhost:8082',
2023-08-20 04:58:45 +08:00
},
2023-08-20 05:02:52 +08:00
},
build: {
outDir: 'build',
},
plugins: [svgr(), react(), VitePWA()],
}));