2022-05-17 使用webpack打包后puppeteer报错问题
环境:centos8.0, node16.15, webpack:5.70.0,puppeteer: 13.6.0
问题描述: 在开发环境下使用puppeteer,可以正常运行, 但通过webpack打包后,启动 puppeteer 时会报错:Error: _projectRoot is undefined. Unable to create a BrowserFetcher.
原因: 由于 puppeteer 的启动需要谷歌浏览器内核 chromium, 默认情况下会使用 node_modules 中的chromium, 然而这是一个可执行程序, webpack打包时并不会把该程序一并打包, 所以在启动 puppeteer 时就会找不到 chromium , 进而导致启动失败, 那么只要单独给 puppeteer 配置另一个 chromium 就好了。
解决方法:
- 复制项目中的 /node_modules/puppeteer/.local-chromium/linux-982053 到一个方便使用的位置, 我这里复制到 /software/chromium。 linux-982053 中 linux 指的是系统, 如果是在windows则是win64 或者 win32, 后面的数字则是版本号, 因人而异, 应该无影响。
修改启动参数
puppeteer.launch({ executablePath: "/software/chromium/linux-982053/chrome-linux/chrome" });
这里通过配置 executablePath 参数,指定 puppeteer 使用第一步复制出来的 chromium, 让打包后的程序也能找到 chromium 。如此一来问题应该解决了。
转载自:https://segmentfault.com/a/1190000041859454