|
| 1 | +import {defineConfig} from 'vitepress' |
| 2 | + |
| 3 | +export default defineConfig({ |
| 4 | + title: 'Transcoder Plugin', |
| 5 | + description: 'Documentation for the Transcoder plugin', |
| 6 | + base: '/docs/transcoder/v3/', |
| 7 | + lang: 'en-US', |
| 8 | + head: [ |
| 9 | + ['meta', {content: 'https://github.com/nystudio107', property: 'og:see_also',}], |
| 10 | + ['meta', {content: 'https://twitter.com/nystudio107', property: 'og:see_also',}], |
| 11 | + ['meta', {content: 'https://youtube.com/nystudio107', property: 'og:see_also',}], |
| 12 | + ['meta', {content: 'https://www.facebook.com/newyorkstudio107', property: 'og:see_also',}], |
| 13 | + ], |
| 14 | + themeConfig: { |
| 15 | + socialLinks: [ |
| 16 | + {icon: 'github', link: 'https://github.com/nystudio107'}, |
| 17 | + {icon: 'twitter', link: 'https://twitter.com/nystudio107'}, |
| 18 | + ], |
| 19 | + logo: '/img/plugin-logo.svg', |
| 20 | + editLink: { |
| 21 | + pattern: 'https://github.com/nystudio107/craft-transcoder/edit/develop/docs/docs/:path', |
| 22 | + text: 'Edit this page on GitHub' |
| 23 | + }, |
| 24 | + algolia: { |
| 25 | + appId: 'VWUWF9S521', |
| 26 | + apiKey: 'db5c03f88e474cbf0356841089be7ffa', |
| 27 | + indexName: 'transcoder' |
| 28 | + }, |
| 29 | + lastUpdatedText: 'Last Updated', |
| 30 | + sidebar: [ |
| 31 | + { |
| 32 | + text: 'Topics', |
| 33 | + items: [ |
| 34 | + {text: 'Transcoder Plugin', link: '/'}, |
| 35 | + {text: 'Transcoder Overview', link: '/overview.html'}, |
| 36 | + {text: 'Configuring Transcoder', link: '/configuring.html'}, |
| 37 | + {text: 'Using Transcoder', link: '/using.html'}, |
| 38 | + ], |
| 39 | + } |
| 40 | + ], |
| 41 | + nav: [ |
| 42 | + {text: 'Home', link: 'https://nystudio107.com/plugins/transcoder'}, |
| 43 | + {text: 'Store', link: 'https://plugins.craftcms.com/transcoder'}, |
| 44 | + {text: 'Changelog', link: 'https://nystudio107.com/plugins/transcoder/changelog'}, |
| 45 | + {text: 'Issues', link: 'https://github.com/nystudio107/craft-transcoder/issues'}, |
| 46 | + { |
| 47 | + text: 'v3', items: [ |
| 48 | + {text: 'v4', link: 'https://nystudio107.com/docs/transcoder/'}, |
| 49 | + {text: 'v3', link: '/'}, |
| 50 | + ], |
| 51 | + }, |
| 52 | + ], |
| 53 | + }, |
| 54 | +}); |
0 commit comments