Skip to content

Commit

Permalink
fix: fix meta config issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Oct 14, 2024
1 parent 2d5add9 commit 8373453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function create(str = '', options: Options = {}) {
title: `${title ? `${title} & ` : ''} ${subTitle} ${options.config?.title || 'Quick Reference'}`,
css: [...options.css],
link: [{ rel: 'icon', href: favicon, type: 'image/svg+xml' }],
meta: [{ description: description }, { keywords: keywords }, ...(options.config?.meta || [])],
meta: [{ description: description }, { keywords: keywords }, ...metaData],
},
],
],
Expand Down

0 comments on commit 8373453

Please # to comment.