We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug When generating a new project with docs, the npm install takes a while because it requires puppeteer which downloads chromium.
docs
npm install
puppeteer
chromium
This is used for markdown files and mermaidjs support.
mermaidjs
If you do not plan on using these features you can speed up the npm install by setting an environment variable:
Workaround export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
npm install .
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When generating a new project with
docs
, thenpm install
takes a while because it requirespuppeteer
which downloadschromium
.This is used for markdown files and
mermaidjs
support.If you do not plan on using these features you can speed up the
npm install
by setting an environment variable:Workaround
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
npm install .
The text was updated successfully, but these errors were encountered: