@@ -19,9 +19,9 @@ import {
1919 github ,
2020 ogImage ,
2121 ogUrl ,
22- rekaDescription ,
23- rekaName ,
24- rekaShortName ,
22+ projectDescription ,
23+ projectName ,
24+ projectShortName ,
2525 releases ,
2626 x ,
2727} from './meta'
@@ -39,22 +39,23 @@ function withBase(url: string) {
3939export default defineConfig ( {
4040 cleanUrls : true ,
4141 ignoreDeadLinks : true ,
42- title : rekaName ,
43- description : rekaDescription ,
44- titleTemplate : rekaShortName ,
42+ title : projectName ,
43+ description : projectDescription ,
44+ titleTemplate : projectShortName ,
4545 head : [
4646 [ 'meta' , { name : 'theme-color' , content : '#0b0d0f' } ] ,
4747 [ 'link' , { rel : 'icon' , type : 'image/svg+xml' , href : '/favicon.svg' , sizes : 'any' } ] ,
4848 [ 'link' , { rel : 'apple-touch-icon' , href : '/apple-touch-icon.png' , sizes : '180x180' } ] ,
49- [ 'meta' , { name : 'apple-mobile-web-app-title' , content : rekaName } ] ,
50- [ 'meta' , { name : 'author' , content : `${ teamMembers . map ( c => c . name ) . join ( ', ' ) } and ${ rekaName } contributors` } ] ,
49+ [ 'meta' , { name : 'apple-mobile-web-app-title' , content : projectName } ] ,
50+ [ 'meta' , { name : 'author' , content : `${ teamMembers . map ( c => c . name ) . join ( ', ' ) } and ${ projectName } contributors` } ] ,
5151 [ 'meta' , { name : 'keywords' , content : '' } ] ,
52- [ 'meta' , { property : 'og:title' , content : rekaName } ] ,
53- [ 'meta' , { property : 'og:description' , content : rekaDescription } ] ,
54- [ 'meta' , { property : 'og:url' , content : ogUrl } ] ,
52+ [ 'meta' , { property : 'og:title' , content : projectName } ] ,
53+ [ 'meta' , { property : 'og:site_name' , content : projectName } ] ,
5554 [ 'meta' , { property : 'og:image' , content : ogImage } ] ,
56- [ 'meta' , { name : 'twitter:title' , content : rekaName } ] ,
57- [ 'meta' , { name : 'twitter:description' , content : rekaDescription } ] ,
55+ [ 'meta' , { property : 'og:description' , content : projectDescription } ] ,
56+ [ 'meta' , { property : 'og:url' , content : ogUrl } ] ,
57+ [ 'meta' , { name : 'twitter:title' , content : projectName } ] ,
58+ [ 'meta' , { name : 'twitter:description' , content : projectDescription } ] ,
5859 [ 'meta' , { name : 'twitter:image' , content : ogImage } ] ,
5960 [ 'meta' , { name : 'twitter:card' , content : 'summary_large_image' } ] ,
6061 [ 'link' , { rel : 'mask-icon' , href : '/logo.svg' , color : '#ffffff' } ] ,
0 commit comments