We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6960c15 commit de9922aCopy full SHA for de9922a
1 file changed
src/utils/highlighter.mjs
@@ -37,13 +37,10 @@ function isCodeBlock(node) {
37
}
38
39
export const highlighter = await createHighlighter({
40
- // s390x machines throw memory issues on WASM builds
41
- // https://github.com/nodejs/node/blob/c9acf345922bd758fbb3f16ee6256aa165260219/test/common/sea.js#L55
42
- //
43
// riscv64 with sv39 has limited virtual memory space, where creating
44
// too many (>20) wasm memory instances fails.
45
// https://github.com/nodejs/node/pull/60591
46
- wasm: !['riscv64', 's390x'].includes(process.arch),
+ wasm: process.arch !== 'riscv64',
47
});
48
49
/**
0 commit comments