From 8467c24f67e60420a5f1af4cc9a1c9e079ebe9a6 Mon Sep 17 00:00:00 2001 From: Carlos Scheidegger Date: Fri, 13 Sep 2024 10:17:50 -0700 Subject: [PATCH] fix quarto-cli/issues/10072 (cherry picked from commit ef4666802007f3e4563b3403041b5b01c97bb93d) --- docs/troubleshooting/index.qmd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/troubleshooting/index.qmd b/docs/troubleshooting/index.qmd index e6bf815c5..756ecfb2f 100644 --- a/docs/troubleshooting/index.qmd +++ b/docs/troubleshooting/index.qmd @@ -105,7 +105,7 @@ If `$XDG_DATA_HOME` is set, `${XDG_DATA_HOME}/.local/share/quarto/logs`, otherwi ### Out-of-memory issues -When building a large project or website, you might run into memory limits. In that case, consider the following environment variable. +When building a large project or website, you might run into memory limits. In that case, consider adjusting the `QUARTO_DENO_V8_OPTIONS` environment variable. In this example, we're setting the maximum amount of memory to be allocated by Deno to be 8GB. Adjust this to your computer's limits. @@ -116,7 +116,7 @@ In this example, we're setting the maximum amount of memory to be allocated by D On PowerShell: ```powershell -$env:QUARTO_DENO_EXTRA_OPTIONS = "--v8-flags=--max-old-space-size=8192" +$env:QUARTO_DENO_V8_OPTIONS = "--max-old-space-size=8192" ``` ## Unix @@ -124,7 +124,7 @@ $env:QUARTO_DENO_EXTRA_OPTIONS = "--v8-flags=--max-old-space-size=8192" On bash-like shells: ```bash -export QUARTO_DENO_EXTRA_OPTIONS=--v8-flags=--max-old-space-size=8192 +export QUARTO_DENO_V8_OPTIONS=--max-old-space-size=8192 ``` :::