include LICENCE file in pagePatterns to allow to link it in the docu, fix undefined bug intoroduced with VUEPRESS_BASE PR

This commit is contained in:
Ulf Gebhardt 2023-12-01 15:23:10 +01:00
parent 2f92c55e00
commit ae0155e075
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -4,5 +4,6 @@ export default defineUserConfig({
title: 'IT4C Frontend Boilerplate Documentation', title: 'IT4C Frontend Boilerplate Documentation',
description: 'IT4C Frontend Boilerplate Documentation', description: 'IT4C Frontend Boilerplate Documentation',
dest: 'build/docs', dest: 'build/docs',
base: `/${process.env.VUEPRESS_BASE}/` ?? '/', base: process.env.VUEPRESS_BASE ? `/${process.env.VUEPRESS_BASE}/` : '/',
pagePatterns: ['**/*.md', '**/LICENSE', '!.vuepress', '!node_modules']
}) })