VuePress插件不生效问题

问题

vuepress配置插件时不生效,原因未知

解决方法

  • 删除node_modules

  • 执行命令

    npm install -D vuepress@next
    
    1
  • 执行命令

     npm install -D @vuepress/plugin-back-to-top@next
    
    1
  • 使用

    module.exports = {
      plugins: [
          ['@vuepress/back-to-top',true]
      ]
    }
    
    1
    2
    3
    4
    5
上次更新: 3 个月前