- Update trystero to v0.23.0

- Add dockerfile for CLI
- Change relay image for testing on arm64
This commit is contained in:
vorotamoroz
2026-03-31 07:17:51 +00:00
parent 837a828cec
commit cda27fb7f8
24 changed files with 1459 additions and 3488 deletions

View File

@@ -12,8 +12,7 @@ const defaultExternal = [
"pouchdb-adapter-leveldb",
"commander",
"punycode",
"node-datachannel",
"node-datachannel/polyfill",
"werift",
];
export default defineConfig({
plugins: [svelte()],
@@ -52,7 +51,7 @@ export default defineConfig({
if (id === "fs" || id === "fs/promises" || id === "path" || id === "crypto" || id === "worker_threads")
return true;
if (id.startsWith("pouchdb-")) return true;
if (id.startsWith("node-datachannel")) return true;
if (id.startsWith("werift")) return true;
if (id.startsWith("node:")) return true;
return false;
},