Skip to content

Commit 8b34b4d

Browse files
committed
Fix "No useable sandbox" by --no-sandbox workaround.
Details see https://pptr.dev/troubleshooting#issues-with-apparmor-on-ubuntu
1 parent 2d3ae6a commit 8b34b4d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

graph-visualization/renderVisualizations.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ let browser;
136136
"--disable-component-extensions-with-background-pages",
137137
"--disable-client-side-phishing-detection",
138138
"--use-gl=disabled",
139-
"--disable-features=Vulkan",
139+
"--disable-features=Vulkan",
140+
"--no-sandbox" // See https://pptr.dev/troubleshooting#issues-with-apparmor-on-ubuntu
140141
],
141142
}); // { headless: false } for testing
142143

0 commit comments

Comments
 (0)