|
| 1 | +import { defineConfig } from 'vitepress' |
| 2 | + |
| 3 | +export default defineConfig({ |
| 4 | + title: "VueJS Tour", |
| 5 | + description: "Guide your users through your application quickly and easily.", |
| 6 | + lang: 'en-US', |
| 7 | + themeConfig: { |
| 8 | + logo: 'https://vuejs.org/images/logo.png', |
| 9 | + nav: [ |
| 10 | + { text: 'Guide', link: '/guide/what-is-vuejs-tour' }, |
| 11 | + { text: 'Reference', link: '/reference/coming-soon' }, |
| 12 | + { text: '1.2.3', items: [ |
| 13 | + { text: 'Changelog', link: 'https://github.com/GlobalHive/vuejs-tour/blob/master/CHANGELOG.md' }, |
| 14 | + { text: 'Roadmap', link: '/guide/roadmap' }, |
| 15 | + { text: 'Issues', link: 'https://github.com/GlobalHive/vuejs-tour/issues' }] |
| 16 | + } |
| 17 | + ], |
| 18 | + sidebar: { |
| 19 | + '/guide/': [ |
| 20 | + { |
| 21 | + text: 'Introduction', |
| 22 | + collapsed: false, |
| 23 | + items: [ |
| 24 | + { text: 'What is VueJS Tour?', link: '/guide/what-is-vuejs-tour' }, |
| 25 | + { text: 'Getting Started', link: '/guide/getting-started' }, |
| 26 | + { text: 'Create a Tour', link: '/guide/create-a-tour' }, |
| 27 | + ] |
| 28 | + }, |
| 29 | + { |
| 30 | + text: 'Customization', |
| 31 | + collapsed: false, |
| 32 | + items: [ |
| 33 | + { text: 'Start Options', link: '/guide/start-options' }, |
| 34 | + { text: 'Highlight Target', link: '/guide/highlight-target' }, |
| 35 | + { text: 'Using a Backdrop', link: '/guide/using-a-backdrop' }, |
| 36 | + { text: 'Hiding the Arrow', link: '/guide/hiding-the-arrow' }, |
| 37 | + { text: 'Tour Margin', link: '/guide/tour-margin' }, |
| 38 | + { text: 'Saving Progress', link: '/guide/saving-progress' }, |
| 39 | + ] |
| 40 | + }, |
| 41 | + { |
| 42 | + text: 'Advanced', |
| 43 | + collapsed: false, |
| 44 | + items: [ |
| 45 | + { text: 'Skipping a Tour', link: '/guide/skipping-a-tour' }, |
| 46 | + { text: 'Button Labels', link: '/guide/button-labels' }, |
| 47 | + { text: 'Step Options', link: '/guide/step-options' }, |
| 48 | + { text: 'Multiple Tours', link: '/guide/multiple-tours' }, |
| 49 | + ] |
| 50 | + }, |
| 51 | + { |
| 52 | + text: "What's next?", |
| 53 | + collapsed: false, |
| 54 | + items: [ |
| 55 | + { text: 'Roadmap', link: '/guide/roadmap' }, |
| 56 | + { text: 'Changelog', link: 'https://github.com/GlobalHive/vuejs-tour/blob/master/CHANGELOG.md' }, |
| 57 | + ] |
| 58 | + } |
| 59 | + ], |
| 60 | + '/reference/': [ |
| 61 | + { |
| 62 | + text: 'Reference', |
| 63 | + collapsed: false, |
| 64 | + items: [ |
| 65 | + { text: 'Coming Soon', link: '/reference/coming-soon' }, |
| 66 | + ] |
| 67 | + }, |
| 68 | + ], |
| 69 | + }, |
| 70 | + socialLinks: [ |
| 71 | + { icon: 'github', link: 'https://github.com/GlobalHive/vuejs-tour' } |
| 72 | + ], |
| 73 | + footer: { |
| 74 | + message: 'Released under the MIT License.', |
| 75 | + copyright: 'Made with ❤️ by Global Hive' |
| 76 | + }, |
| 77 | + editLink: { |
| 78 | + pattern: 'https://github.com/GlobalHive/vuejs-tour/tree/master/docs/:path', |
| 79 | + text: 'Edit this page on GitHub' |
| 80 | + }, |
| 81 | + } |
| 82 | +}) |
0 commit comments