pengzhanbo / vuepress-theme-plume

Vuepress Theme. A simple, feature-rich, document & blog
https://theme-plume.vuejs.press
MIT License
48 stars 11 forks source link

按照步骤运行后报错啊 #61

Closed shylock-wu closed 2 months ago

shylock-wu commented 2 months ago

CleanShot 2024-04-03 at 19 32 09@2x

很奇怪

pengzhanbo commented 2 months ago

因为你的 .vuepress 文件夹位置放错了, 根据你的 package.json 中的 scripts 配置,你的 .vuepress 应该是放在 docs 目录下的,而不是与 docs 同级。

如果你想保持当前目录不变,你应该修改你的 scripts 命令:

{
  "scripts": {
    "dev": "vuepress dev docs --config .vuepress/config.ts",
    "build": "vuepress build docs --config .vuepress/config.ts"
  }
}

参考 文档

shylock-wu commented 2 months ago

hhh我看你写的文档就是以为在根目录下,因为我没看vuepress的官方文档 所以正常流程走下来就遇到这个问题了 感觉你可以说明一下

pengzhanbo commented 2 months ago

好,我补充下这块的说明,避免引起问题