-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chromium revision is not downloaded #13
Comments
Hi DennisKh, can you provide more information ? Did you run |
After
When I installed the puppeteer-pdf, I saw how the chromium was installed |
|
I fixed error with |
For some reason, the new version of the |
Installing an older version seems to fix the issue, Ok, appears to be in a separate package, https://github.com/GoogleChrome/puppeteer#puppeteer-core. I will update readme to let people know how to use the new version. |
Not sure if the comment above solved the issue, but you should copy the
You can run |
Thank you very much for the detailed instructions. Everything works. But I need advice. How to connect css file? I tried to prescribe styles in the html but they did not render. |
Not sure I understand what is your issue. I've used with in-line styling (not really sure why right now), but I've tested with a html file and a css file and it works. index.html <html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>H1</h1>
<p>Hello there</p>
</body>
</html> body {
font-weight: bold;
font-size: 50px;
}
|
I got with this. It was not a issue. It was my mistake when i tried to render view. |
Don't know yet why the behaviour of this bug, but another solution is to remove the |
I am still having this problem installing puppeteer-pdf with |
Did you try copy the |
The text was updated successfully, but these errors were encountered: