condorheroblog / vuepress-plugin-export-pdf

VuePress plugin exports PDF 📁.
MIT License
22 stars 2 forks source link

npm run export-pdf没有报错但是本地没有pdf文件生成 #19

Closed AhZoey closed 1 month ago

AhZoey commented 5 months ago

执行过程

  1. npm install @condorhero/vuepress-plugin-export-pdf-v2 -D

  2. pageage.json image

  3. 执行npm run export-pdf,结果如下 image 所有的配置都是默认的,没有写配置文件

condorheroblog commented 5 months ago

这是 Windows 系统下的一个 bug,在 Core 目录中使用了 join 方法进行路径拼接,而底层依赖的 fast-glob 只支持 Linux 风格的路径,导致读取不到文件,无法进行 PDF 合成。

const tempPdfDir = join(tempDir, "pdf");

公司裁员了,我电脑交了,等我找到新工作有电脑了在修这个 bug💪

condorheroblog commented 1 month ago

已经在 v3.0.3 中修复