HomeLogo

vuepress-plugin-feed1

为 VuePress 提供 Feed 生成

快速上手 💡配置 🛠

# 使用插件

# 安装

# 使用

// .vuepress/config.js
module.exports = {
  plugins: [
    [
      "feed1",
      {
        // 你的选项
      },
    ],
  ],
};
1
2
3
4
5
6
7
8
9
10
11

:::

// .vuepress/config.ts
export default {
  plugins: [
    [
      "feed1",
      {
        // 你的选项
      },
    ],
  ],
};
1
2
3
4
5
6
7
8
9
10
11

::::