mirror of
https://github.com/traccar/traccar-web.git
synced 2025-01-08 12:07:27 +08:00
21 lines
451 B
JavaScript
21 lines
451 B
JavaScript
|
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()],
|
||
|
};
|
||
|
});
|