Skip to content

Commit

Permalink
fix(Build): ./authors.data should not use UpperCase first letter
Browse files Browse the repository at this point in the history
  • Loading branch information
sfxcode committed Nov 3, 2022
1 parent b7895a2 commit a889290
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/.vitepress/theme/composables/useAuthors.ts
Original file line number Diff line number Diff line change
@@ -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<Author[]> = ref(data)
Expand Down

0 comments on commit a889290

Please sign in to comment.