我正在尝试从Vuepress中排除README.md
,以便将其用于Github文档。我使用index.md
作为主页。
有没有办法做到这一点?
我尝试了类似的方法,但这完全是盲目的,因为我不知道装载机叫什么:
chainWebpack: config => {
config.module
.rule('md')
.exclude
.add('README')
}
答案 0 :(得分:0)
您可以这样构建存储库,有效地将VuePress应用程序向下移动一级(在此示例中,在“ site”目录中):
├── 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)