diff options
author | codecalm <codecalm@gmail.com> | 2020-04-07 21:36:21 +0200 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-04-07 21:36:21 +0200 |
commit | 9bd6f439de4f883cfe0f3a7b3b4e1dccbf60a126 (patch) | |
tree | dc3ad546b5b5d5b270f707bb63a727c28883eda6 /gulpfile.js | |
parent | changelog-image fix (diff) | |
download | tabler-icons-9bd6f439de4f883cfe0f3a7b3b4e1dccbf60a126.tar.xz |
png image fixes
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index 93276410..ff6b8c21 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -23,7 +23,7 @@ const svgToPng = async (filePath, destination) => { filePath = path.join(__dirname, filePath); const htmlFilePath = path.join("file:", filePath); - const browser = await puppeteer.launch(); + const browser = await puppeteer.launch({headless: false}); const page = await browser.newPage(); await page.setViewport({ |