sync: update from private repo (f6d625db)
CI / build-and-test (push) Has been cancelled

This commit is contained in:
oss-sync
2026-06-26 03:35:45 +00:00
parent 29ccaf1e92
commit b857c33ef6
371 changed files with 31312 additions and 8172 deletions
+10 -1
View File
@@ -1,6 +1,7 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { execSync } from 'child_process';
import { resolve } from 'node:path';
function getAppVersion(): string {
try {
@@ -21,7 +22,15 @@ export default defineConfig({
define: {
__APP_VERSION__: JSON.stringify(getAppVersion()),
},
build: { outDir: 'dist' },
build: {
outDir: 'dist',
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
appHarness: resolve(__dirname, 'app-harness.html'),
},
},
},
server: {
proxy: {
'/api': 'http://localhost:9876',