Two pnpm workspaces (root globs pcbjam-shared; pcbjam/web has it too) each install yjs, so shared's collab code (kicad-y) and the app's yjs were two physical copies → a Y.Map rejects the other instance's Y types ('Unexpected content type'). resolve.dedupe:['yjs'] in vite + vitest forces a single copy. Not a test-only artifact: the same two copies bundle into the editor and would break collab on doc seed. Full standalone suite now 55/55 (was 47/55).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
68 lines
2.7 KiB
TypeScript
68 lines
2.7 KiB
TypeScript
import * as fs from "node:fs";
|
|
import * as path from "node:path";
|
|
import react from "@vitejs/plugin-react";
|
|
import { defineConfig, type Plugin } from "vite";
|
|
|
|
/**
|
|
* Serve /wasm/*.gz as opaque bytes WITHOUT `Content-Encoding: gzip`.
|
|
*
|
|
* Vite's static (sirv) sets `Content-Encoding: gzip` for `.gz` files. The
|
|
* browser then transparently decompresses the response, so the harness's
|
|
* `fetch('images.tar.gz')` receives the DECOMPRESSED tar — and KiCad's gunzip
|
|
* of it fails with "Can't read from inflate stream: incorrect header check".
|
|
* We must hand the browser the raw gzip bytes, so we serve them ourselves with
|
|
* no Content-Encoding. Runs before the public-dir middleware.
|
|
*/
|
|
function serveWasmGzRaw(): Plugin {
|
|
const publicDir = path.resolve(__dirname, "public");
|
|
return {
|
|
name: "serve-wasm-gz-raw",
|
|
configureServer(server) {
|
|
server.middlewares.use((req, res, next) => {
|
|
const url = req.url?.split("?")[0] ?? "";
|
|
if (!/^\/wasm\/.+\.gz$/.test(url)) return next();
|
|
const filePath = path.join(publicDir, decodeURIComponent(url));
|
|
fs.stat(filePath, (err, st) => {
|
|
if (err || !st.isFile()) return next();
|
|
res.setHeader("Content-Type", "application/octet-stream");
|
|
res.setHeader("Content-Length", st.size);
|
|
// Intentionally NO Content-Encoding so fetch() yields raw gzip bytes.
|
|
fs.createReadStream(filePath).pipe(res);
|
|
});
|
|
});
|
|
},
|
|
};
|
|
}
|
|
|
|
export default defineConfig({
|
|
plugins: [serveWasmGzRaw(), react()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
// @pcbjam/shared is in a second pnpm workspace with its own `yjs`; dedupe so
|
|
// the bundled editor links ONE yjs (a mutable, instanceof-checked singleton).
|
|
// Without it shared's collab code (kicad-y) and the app's yjs are two
|
|
// instances → "Unexpected content type" the moment a doc is seeded.
|
|
dedupe: ["yjs"],
|
|
},
|
|
server: {
|
|
// Default :3048. The closed `pnpm dev:gpl` runs a second editor instance on
|
|
// :3049 (alongside the closed stack) via STANDALONE_PORT. strictPort so a
|
|
// busy port fails loudly instead of drifting onto another service's port.
|
|
port: Number(process.env.STANDALONE_PORT) || 3048,
|
|
strictPort: true,
|
|
// KiCad WASM is cross-origin-isolated (COOP/COEP); same-origin /wasm assets
|
|
// load fine. Keep these so SharedArrayBuffer/threads are available.
|
|
headers: {
|
|
"Cross-Origin-Opener-Policy": "same-origin",
|
|
"Cross-Origin-Embedder-Policy": "require-corp",
|
|
},
|
|
},
|
|
preview: {
|
|
headers: {
|
|
"Cross-Origin-Opener-Policy": "same-origin",
|
|
"Cross-Origin-Embedder-Policy": "require-corp",
|
|
},
|
|
},
|
|
});
|