3

我正在尝试README.md从 Vuepress 中排除,以便将其用于 Github 文档。我正在index.md用作我的主页。

有没有办法做到这一点?

我试过这样的东西,但这完全是盲目的,因为我不知道装载机叫什么:

chainWebpack: config => {
   config.module
      .rule('md')
      .exclude
      .add('README')
}
4

1 回答 1

0

您可以像这样构建您的存储库,有效地将 VuePress 应用程序下移一级(在本例中,在“站点”目录内):

├── site
│   ├── .vuepress
│   │   ├── components
│   │   ├── theme
│   │   ├── public
│   │   ├── styles
│   │   ├── config.js
│   ├── docs
│   │   ├── subDocs (Note: Nested docs)
│   │   └── README.md
│   ├── README.md (Note: The home page of the docs)
│   └── package.json
└── README.md (Note: GitHub documentation)
于 2019-12-28T00:21:04.663 回答