style(platform): unify workspace typography scale

This commit is contained in:
lingniu
2026-07-16 11:44:08 +08:00
parent 7299f42b0e
commit 6d82a66d68
2 changed files with 223 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
const apiProxyTarget = process.env.VITE_API_PROXY_TARGET || 'http://115.29.187.205:20200';
const apiProxyTarget = process.env.VITE_API_PROXY_TARGET || 'http://115.29.187.205:20300';
export default defineConfig({
plugins: [react()],
@@ -10,8 +10,8 @@ export default defineConfig({
},
server: {
proxy: {
'/api': apiProxyTarget,
'/_AMapService': apiProxyTarget
'/api': { target: apiProxyTarget, changeOrigin: true },
'/_AMapService': { target: apiProxyTarget, changeOrigin: true }
}
},
test: {