1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| module.exports = {
| base: '/vue-i18n-extract/',
| title: 'vue-i18n-extract',
| description: 'Manage vue-i18n localization with static analysis.',
| displayAllHeaders: false,
| activeHeaderLinks: false,
| themeConfig: {
| sidebar: [
| ['/', 'Home'],
| 'how-to-use',
| 'features',
| 'testing',
| ],
| nav: [
| { text: 'Home', link: '/' },
| { text: 'vue-i18n', link: 'https://github.com/kazupon/vue-i18n' },
| { text: 'vue-cli-plugin-i18n', link: 'https://github.com/kazupon/vue-cli-plugin-i18n' },
| { text: 'Donate', link: 'https://www.patreon.com/bePatron?u=17437545' },
| { text: 'GitHub', link: 'https://github.com/pixari/vue-i18n-extract/' },
| ],
| }
| }
|
|