From a88929073af810a624451d6476bcb6891b3b06c9 Mon Sep 17 00:00:00 2001 From: sfxcode Date: Thu, 3 Nov 2022 22:32:00 +0100 Subject: [PATCH] fix(Build): ./authors.data should not use UpperCase first letter --- docs/.vitepress/theme/composables/useAuthors.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/.vitepress/theme/composables/useAuthors.ts b/docs/.vitepress/theme/composables/useAuthors.ts index 0384bde..aecc0fa 100644 --- a/docs/.vitepress/theme/composables/useAuthors.ts +++ b/docs/.vitepress/theme/composables/useAuthors.ts @@ -1,8 +1,8 @@ import type { Ref } from 'vue' import { computed, ref } from 'vue' import { useRoute } from 'vitepress' -import type { Author } from './Authors.data' -import { data } from './Authors.data' +import type { Author } from './authors.data' +import { data } from './authors.data' export default () => { const allAuthors: Ref = ref(data)