0.1.4 • Published 9 months ago

vitepress-plugin-sponsor v0.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

vitepress-plugin-sponsor

美观的 vitepress 打赏插件,修改自 donate-page

主要作用是在文章底部添加打赏模块:

alt text

使用

安装依赖 pnpm/npm/yarn

pnpm add vitepress-plugin-sponsor

引入插件在 .vitepress/config.ts 配置文件中

import { defineConfig } from 'vitepress'
import { templatePlugin } from 'vitepress-plugin-sponsor'

export default defineConfig({
  vite: {
     plugins:[
        // 打赏插件
        SponsorPlugin({
            /**
             * 打赏模块样式
             */
            type: 'simple',
            aliPayQR: 'your_image_link',
            weChatQR: 'your_image_link'
        })
     ]
  }
})

完整配置

export interface SponsorOptions {
    /**
     * 打赏模块样式
     */
    type: 'simple',
    aliPayQR: '',
    weChatQR: '',
}
0.1.4

9 months ago

0.1.3

9 months ago

0.1.2

9 months ago

0.1.1

9 months ago

0.1.0

9 months ago