|
| 1 | +import { defineConfig } from 'vitepress' |
| 2 | +import { genFeed } from './genFeed.js' |
| 3 | + |
| 4 | +export default defineConfig({ |
| 5 | + lang: 'en-US', |
| 6 | + title: 'Multividas Engineering blog', |
| 7 | + description: |
| 8 | + 'Creative engineers and developers building a world where you can belong anywhere, Multividas Engineering blog is a technical news resource for engineers interested in how we solve large-scale technical challenges at Multividas.', |
| 9 | + lastUpdated: true, |
| 10 | + cleanUrls: true, |
| 11 | + head: [ |
| 12 | + ['meta', { name: 'theme-color', content: '#0f4c81' }], |
| 13 | + // open graph SEO tips |
| 14 | + ['meta', { property: 'og:locale', content: 'en_US' }], |
| 15 | + ['meta', { property: 'og:type', content: 'Multividas Engineering blog' }], |
| 16 | + ['meta', { property: 'og:title', content: 'Multividas Engineering blog' }], |
| 17 | + [ |
| 18 | + 'meta', |
| 19 | + { |
| 20 | + property: 'og:description', |
| 21 | + content: |
| 22 | + 'With engineering.multividas.com, you can write and publish technical articles.' |
| 23 | + } |
| 24 | + ], |
| 25 | + [ |
| 26 | + 'meta', |
| 27 | + { |
| 28 | + property: 'og:image', |
| 29 | + content: |
| 30 | + 'logo-multividas-blogging-platform-multividas-social-media-blog-multividas-posts-threads-multividas-comments-discussions-multividas-short-texts-multividas-social-blogging.svg' |
| 31 | + } |
| 32 | + ], |
| 33 | + ['meta', { property: 'og:url', content: 'engineering.multividas.com' }], |
| 34 | + [ |
| 35 | + 'meta', |
| 36 | + { property: 'og:site_name', content: 'Multividas Engineering blog' } |
| 37 | + ], |
| 38 | + // multividas tags |
| 39 | + ['meta', { property: 'multividas:card', description: 'summary' }], |
| 40 | + ['meta', { property: 'multividas:site', description: 'multividaseng' }], |
| 41 | + [ |
| 42 | + 'meta', |
| 43 | + { |
| 44 | + property: 'multividas:title', |
| 45 | + description: 'Multividas Engineering blog' |
| 46 | + } |
| 47 | + ], |
| 48 | + [ |
| 49 | + 'meta', |
| 50 | + { |
| 51 | + property: 'multividas:description', |
| 52 | + description: |
| 53 | + 'With engineering.multividas.com, you can write and publish technical articles.' |
| 54 | + } |
| 55 | + ], |
| 56 | + [ |
| 57 | + 'meta', |
| 58 | + { |
| 59 | + property: 'multividas:image', |
| 60 | + description: 'https://avatars.githubusercontent.com/u/137715137?v=4' |
| 61 | + } |
| 62 | + ], |
| 63 | + // usefathom |
| 64 | + [ |
| 65 | + 'script', |
| 66 | + { |
| 67 | + src: 'https://cdn.usefathom.com/script.js', |
| 68 | + 'data-site': 'NYHGSGQV', |
| 69 | + 'data-spa': 'auto', |
| 70 | + defer: '' |
| 71 | + } |
| 72 | + ], |
| 73 | + // favicon |
| 74 | + [ |
| 75 | + 'link', |
| 76 | + { |
| 77 | + rel: 'icon', |
| 78 | + type: 'image/svg+xml', |
| 79 | + src: 'https://developers.multividas.com/images/logo.svg' |
| 80 | + } |
| 81 | + ] |
| 82 | + ], |
| 83 | + sitemap: { |
| 84 | + hostname: 'https://engineering.multividas.com' |
| 85 | + }, |
| 86 | + buildEnd: genFeed |
| 87 | +}) |
0 commit comments