前端性能问题根因在于 Bun bundler 无法有效 code split、CSS
tree-shake 和产出优化的前端资源。经多轮 Bun 原生优化尝试
均无明显效果后,决定将前端构建迁回 Vite。
主要变更:
- 前端构建:从 Bun HTML import bundling 切换为 Vite build
(Rolldown code splitting、vendor chunk、CSS 优化)
- 开发模式:从 Bun fullstack 单进程 HMR 切换为 Vite dev
server + Bun API server 双进程(:5173 + :3000)
- 生产构建:三步流水线(Vite build → code generation →
Bun compile),通过 `import with { type: "file" }` 嵌入前端资源
- 静态资源服务:从 Bun HTML import manifest 切换为自定义
serveStaticAsset 函数,支持 SPA fallback 和正确的 Cache-Control
- Server 接口:BootstrapOptions 和 StartServerOptions 增加
staticAssets? 可选参数
- 文档更新:DEVELOPMENT.md 和 README.md 反映新的开发模式,
主 specs 同步 delta 变更
新增能力:
- static-asset-embedding: 构建时资源扫描与 code generation、
运行时静态资源服务
- vite-frontend-bundling: Vite 构建配置、code splitting 策略、
CSS 处理
27 lines
613 B
TypeScript
27 lines
613 B
TypeScript
import { fileURLToPath } from "node:url";
|
|
|
|
const projectRoot = fileURLToPath(new URL("..", import.meta.url));
|
|
|
|
const apiServer = Bun.spawn(["bun", "--watch", "src/server/dev.ts", ...process.argv.slice(2)], {
|
|
cwd: projectRoot,
|
|
stderr: "inherit",
|
|
stdout: "inherit",
|
|
});
|
|
|
|
const viteServer = Bun.spawn(["bunx", "--bun", "vite", "--host"], {
|
|
cwd: projectRoot,
|
|
stderr: "inherit",
|
|
stdout: "inherit",
|
|
});
|
|
|
|
function shutdown() {
|
|
apiServer.kill();
|
|
viteServer.kill();
|
|
}
|
|
|
|
process.on("SIGINT", shutdown);
|
|
process.on("SIGTERM", shutdown);
|
|
|
|
await Promise.race([apiServer.exited, viteServer.exited]);
|
|
shutdown();
|