feat(platform): harden telemetry pipeline and unify Semi UI workspaces

This commit is contained in:
lingniu
2026-07-18 00:26:36 +08:00
parent 65b4e4f055
commit 159c80b0ae
136 changed files with 21616 additions and 1785 deletions

View File

@@ -1,10 +1,19 @@
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import { resolve } from 'node:path';
const apiProxyTarget = process.env.VITE_API_PROXY_TARGET || 'http://115.29.187.205:20300';
export default defineConfig({
plugins: [react()],
build: {
rollupOptions: {
input: {
app: resolve(__dirname, 'index.html'),
semiPrototype: resolve(__dirname, 'semi-prototype.html')
}
}
},
worker: {
format: 'es'
},