Describe the bug
When generating a new project with docs, the npm install takes a while because it requires puppeteer which downloads chromium.
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 .
Describe the bug
When generating a new project with
docs, thenpm installtakes a while because it requirespuppeteerwhich downloadschromium.This is used for markdown files and
mermaidjssupport.If you do not plan on using these features you can speed up the
npm installby setting an environment variable:Workaround
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1npm install .