puppeteer-lottie-cli
puppeteer-lottie-cli copied to clipboard
Loading browserError: Browser is not downloaded. Run "npm install" or "yarn install" on executing puppeteer cli command
workaround:
const renderLottie = require('puppeteer-lottie');
await renderLottie({
path: 'path/to/input.json',
output: 'path/to/input.mp4',
puppeteerOptions: {
executablePath: 'google-chrome' // my local chrome path, I'm using linux
}
});