diff --git a/.vuepress/config.ts b/.vuepress/config.ts index 92d5f49..482505b 100644 --- a/.vuepress/config.ts +++ b/.vuepress/config.ts @@ -4,5 +4,6 @@ export default defineUserConfig({ title: 'IT4C Frontend Boilerplate Documentation', description: 'IT4C Frontend Boilerplate Documentation', dest: 'build/docs', - base: `/${process.env.VUEPRESS_BASE}/` ?? '/', + base: process.env.VUEPRESS_BASE ? `/${process.env.VUEPRESS_BASE}/` : '/', + pagePatterns: ['**/*.md', '**/LICENSE', '!.vuepress', '!node_modules'], })