diff --git a/tools/docs/style/gen_style_reference.mjs b/tools/docs/style/gen_style_reference.mjs index 7c87edc0..4dca681a 100644 --- a/tools/docs/style/gen_style_reference.mjs +++ b/tools/docs/style/gen_style_reference.mjs @@ -37,7 +37,10 @@ function appendContent(obj, level) { const Vizzu = process.argv[2] -const browserLaunched = puppeteer.launch({ headless: 'new' }) +const browserLaunched = puppeteer.launch({ + headless: 'new', + args: ['--disable-web-security', '--no-sandbox'] +}) const pageCreated = browserLaunched.then((browser) => { return browser.newPage()