|
| 1 | +const socialMeta = { |
| 2 | + title: 'Neos Backups', |
| 3 | + description: 'Easy backup management plugin for Neos CMS', |
| 4 | + image: 'https://repository-images.githubusercontent.com/235191200/234dfe80-4129-11ea-9f1d-a938b96ec553', |
| 5 | + url: 'https://breadlesscode.github.io/neos-backups' |
| 6 | +}; |
| 7 | + |
1 | 8 | module.exports = { |
2 | 9 | title: 'Neos Backups', |
3 | 10 | base: process.env.NODE_ENV === 'production'? '/neos-backups/': '/', |
| 11 | + head: [ |
| 12 | + ['meta', {property: 'og:title', content: socialMeta.title}], |
| 13 | + ['meta', {property: 'og:description', content: socialMeta.description}], |
| 14 | + ['meta', {property: 'og:image', content: socialMeta.image}], |
| 15 | + ['meta', {property: 'og:url', content: socialMeta.url}], |
| 16 | + ['meta', {property: 'twitter:title', content: socialMeta.title}], |
| 17 | + ['meta', {property: 'twitter:description', content: socialMeta.description}], |
| 18 | + ['meta', {property: 'twitter:image', content: socialMeta.image}], |
| 19 | + ['meta', {property: 'twitter:card', content: 'summary_large_image'}], |
| 20 | + ], |
4 | 21 | themeConfig: { |
5 | 22 | nav: [ |
6 | 23 | {text: 'Github', link: 'https://github.com/breadlesscode/neos-backups'} |
|
0 commit comments