我目前正在使用 Vuepress。但是我想要在我的 Vuepress 站点中使用多种语言。经过3天的挣扎,我决定把我的问题放在这里。(是的,我检查了 Vuepress 文档:https ://vuepress.vuejs.org/guide/i18n.html#default-theme-i18n-config )
问题:在我的配置中,我将荷兰语作为主要语言。当我想将英语作为语言环境时。我的导航不会更新。这是我的配置:
module.exports = {
title: 'Portfolio Bjorn',
description: ' ',
themeConfig: {
nav: [
{ text: 'Over mij', link: '/overmij.html'},
{ text: 'Portolfio', link: '/portfolio/'},
{ text: 'Contact', link: '/contact.html'},
{
text: 'Languages',
items: [
{ text: 'Dutch', link: '/' },
{ text: 'English', link: '/english/' }
]
}
],
sidebar: {
'/portfolio/': [
'',
'school',
'zelfgemaakt'
]
},
locales: {
'/english': {
lang: 'en-Us',
nav: [
{ text: 'About', link: '/about.html'},
{ text: 'Portfolio', link: '/portfolio_en/'},
{ text: 'Contact', link: '/contact_en.html'},
]
}
}
}
}
我还有一张我的文件夹结构的图片:
我希望有人知道这个问题的答案,所以我可以继续。
亲切的问候