summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDarshan Sen <raisinten@gmail.com>2023-05-04 20:57:54 +0530
committerGitHub <noreply@github.com>2023-05-04 15:27:54 +0000
commit2de10f5149c0fc25278bfb6c64f33e967ccd1741 (patch)
tree0f1dacf9e46e52ae038f725a9f4771030764d370 /doc
parentc868aad15a49d4ea20a06e47eb9cdafc0c218fb4 (diff)
downloadnode-new-2de10f5149c0fc25278bfb6c64f33e967ccd1741.tar.gz
sea: add option to disable the experimental SEA warning
Refs: https://github.com/nodejs/single-executable/discussions/60 Signed-off-by: Darshan Sen <raisinten@gmail.com> PR-URL: https://github.com/nodejs/node/pull/47588 Fixes: https://github.com/nodejs/node/issues/47741 Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/single-executable-applications.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/api/single-executable-applications.md b/doc/api/single-executable-applications.md
index 46c3c8e87a..fe8ff1b954 100644
--- a/doc/api/single-executable-applications.md
+++ b/doc/api/single-executable-applications.md
@@ -164,7 +164,8 @@ The configuration currently reads the following top-level fields:
```json
{
"main": "/path/to/bundled/script.js",
- "output": "/path/to/write/the/generated/blob.blob"
+ "output": "/path/to/write/the/generated/blob.blob",
+ "disableExperimentalSEAWarning": true // Default: false
}
```