Skip to content

Commit

Permalink
fix style ref gen
Browse files Browse the repository at this point in the history
  • Loading branch information
veghdev committed Feb 14, 2025
1 parent f4aac0d commit 216d94d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/docs/style/gen_style_reference.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 216d94d

Please sign in to comment.