Initial LisgloSIPS V2 implementation

This commit is contained in:
hectorzhao
2026-06-22 10:56:38 +08:00
commit 5fa1bd35e9
303 changed files with 35644 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [react()],
server: {
host: '127.0.0.1',
proxy: {
'/api/v2': 'http://127.0.0.1:3000'
}
},
preview: {
host: '127.0.0.1'
}
});