4ce4204b6c
CI / Lint (push) Failing after 2s
CI / Build (push) Has been skipped
SDK CI / PHP SDK (push) Failing after 1s
Split PHP SDK / PHP SDK tests (push) Failing after 1s
CI / Test (push) Failing after 1s
CI / Dashboard (push) Failing after 0s
SDK CI / JavaScript SDK (push) Failing after 0s
SDK CI / Python SDK (push) Failing after 2s
SDK CI / Java SDK (push) Failing after 1s
Split PHP SDK / Mirror sdk/php -> rmyndharis/openwa-php (push) Has been skipped
CI / Test (PostgreSQL migrations) (push) Failing after 7m47s
CI / Docker Build (push) Has been skipped
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { readFileSync } from 'node:fs';
|
|
import { resolve } from 'node:path';
|
|
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// Single source of truth for the version shown in the dashboard: read it from
|
|
// package.json at build time so the Login screen always reflects the actual
|
|
// release (bumped via `npm version`), instead of a hard-coded literal that
|
|
// silently drifts. APP_VERSION env still overrides if explicitly provided.
|
|
const { version: pkgVersion } = JSON.parse(readFileSync(resolve(process.cwd(), 'package.json'), 'utf-8')) as {
|
|
version: string;
|
|
};
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
appType: 'spa', // Enable SPA fallback for client-side routing
|
|
define: {
|
|
__APP_VERSION__: JSON.stringify(process.env.APP_VERSION || pkgVersion),
|
|
__BUILD_TIME__: JSON.stringify(new Date().toISOString()),
|
|
},
|
|
server: {
|
|
port: 2886,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:2785',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
},
|
|
// Proxy the WebSocket (socket.io) transport so the dashboard's real-time
|
|
// chats/sessions streams work against the dev backend.
|
|
'/socket.io': {
|
|
target: 'http://localhost:2785',
|
|
ws: true,
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
});
|