vuepress-reco / vuepress-theme-reco

🎨 This is the repo for vuepress-theme-reco 2.
https://vuepress-theme-reco.recoluan.com
MIT License
538 stars 173 forks source link

插件配置不生效 #261

Closed springboot4 closed 4 months ago

springboot4 commented 4 months ago

按照以下步骤配置插件并不生效。是不支持还是我配置错了,文档中没有关于插件的内容。

安装插件:"vuepress-plugin-copyright": "^1.0.2"

配置插件: config.ts:

import copyrightPlugin from "vuepress-plugin-copyright"

export default defineUserConfig({ 
    theme: recoTheme({}),
    plugins: [
        [
            copyrightPlugin({
                noCopy: true,   
                minLength: 10,
            }),
        ]

    ]
});