A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: reduce node polyfills as much as possible

+4 -7
+4 -7
_config.ts
··· 26 26 }, 27 27 }); 28 28 29 + console.log(builtinModules); 30 + 29 31 export default site; 30 32 31 33 //////////////////////////////////////////// ··· 40 42 }, 41 43 bundle: true, 42 44 format: "esm", 43 - minify: false, 44 - // outExtension: { ".js": ".min.js" }, 45 + minify: true, 45 46 external: ["./file-tree.json"], 46 47 platform: "browser", 47 48 plugins: [ ··· 103 104 }, 104 105 nodeModulesPolyfillPlugin({ 105 106 fallback: "empty", 106 - globals: { 107 - process: true, 108 - Buffer: true, 109 - }, 110 - modules: builtinModules.filter((a) => !["crypto", "fs"].includes(a)), 107 + modules: [], 111 108 }), 112 109 wasmLoader(), 113 110 ],