feat: 手续费改为逐笔USD累算 + Vite React前端 + system_orders表 + README

This commit is contained in:
jackyu66git
2026-05-04 04:34:27 +08:00
parent 15a4684208
commit 0288dc8284
18 changed files with 2919 additions and 521 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
base: '/static/',
server: {
port: 5173,
proxy: {
'/api': { target: 'http://localhost:8888', changeOrigin: true },
'/events': { target: 'http://localhost:8888', changeOrigin: true },
},
},
build: {
outDir: 'dist',
},
})