- Add @ricky0123/vad-react dependency to ui/package.json - Add copy-vad-assets npm script for reproducible asset copying - Copy vad.worklet.bundle.min.js, silero_vad_legacy.onnx, silero_vad_v5.onnx to ui/public/ - Add COOP/COEP headers to Vite dev server config (SharedArrayBuffer support in dev) - Update pnpm lockfile
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import path from "path";
|
|
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
lexical: path.resolve(__dirname, "./node_modules/lexical/Lexical.mjs"),
|
|
// [nexus] Replace upstream OnboardingWizard with Nexus single-step version
|
|
[path.resolve(__dirname, "src/components/OnboardingWizard")]:
|
|
path.resolve(__dirname, "./src/components/NexusOnboardingWizard"),
|
|
},
|
|
},
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks: {
|
|
// Note: react/react-dom cannot be split via manualChunks — @vitejs/plugin-react
|
|
// injects the JSX runtime before Rollup processes chunks, so they stay in the entry.
|
|
// The 37 lazy-loaded page chunks are the primary performance lever.
|
|
"vendor-router": ["react-router-dom"],
|
|
"vendor-query": ["@tanstack/react-query"],
|
|
"vendor-markdown": ["react-markdown", "remark-gfm"],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
server: {
|
|
port: 5173,
|
|
headers: {
|
|
"Cross-Origin-Opener-Policy": "same-origin",
|
|
"Cross-Origin-Embedder-Policy": "require-corp",
|
|
},
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://localhost:3100",
|
|
ws: true,
|
|
},
|
|
},
|
|
},
|
|
});
|