我正在尝试README.md
从 Vuepress 中排除,以便将其用于 Github 文档。我正在index.md
用作我的主页。
有没有办法做到这一点?
我试过这样的东西,但这完全是盲目的,因为我不知道装载机叫什么:
chainWebpack: config => {
config.module
.rule('md')
.exclude
.add('README')
}
您可以像这样构建您的存储库,有效地将 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)