"Page crashed!" error for presentations with large data-background-image
See original GitHub issueI’m unable to run decktape successful for a presentation. I narrowed it down to a slide which has data-background-image set to the image from https://static.pexels.com/photos/398532/pexels-photo-398532.jpeg.
Decktape stops with the following error message:
(node:1) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Page crashed!
(node:1) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Other background images are working properly. What could be the reason?
Issue Analytics
- State:
- Created 6 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Fixes or workarounds for recent issues in PowerPoint for ...
PowerPoint crashes and slow performance. [FIXED] Error "Invalid password" when opening a VBA project using the correct password.
Read more >Revealjs Options - Quarto
Revealjs is an open source HTML presentation framework. To learn more about Revealjs see ... Require any quarto versions whose major version number...
Read more >PowerPoint keeps crashing? Try these 9 helpful tips - Buffalo 7
PowerPoint keeps crashing? You don't know why? Hold off on throwing your laptop out of the window and check out our helpful tips...
Read more >Why PowerPoint crashes and how to prevent it - BrightCarbon
tiff, or a high-def video. Whatever it is, moving it around PowerPoint is taking up a lot of your RAM. Solution for your...
Read more >PowerPoint crashed? Here's how to fix it - Future Present
From errors caused during the design process, to crashes and freezes that ... A large PowerPoint file choked with needlessly large content might...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
In at least one case in which I’ve been running Decktape inside the Docker container, I discovered that I could prevent the crash by increasing the default shared memory segment size by adding
--shm-size 2G
to thedocker run
command line. Inspired by this comment.@pkgw Thanks! Your suggestion fixed the problem for me.