saberland/saber
The issue has been solved
i18n support #87
egoist posted onGitHub
Similar to the solution in VuePress.
To enable multi-language support, you can use a special folder structure:
pages
āā about.md
āā zh-cn
āā about.md
Then, specify the locales
option in saber-config.js
:
module.exports = {
siteConfig: {
lang: 'en-US',
title: 'My Website'
},
locales: {
'/zh-cn': {
siteConfig: {
lang: 'zh-cn',
title: 'ęēē½ē«'
}
}
}
}
You can override siteConfig
and themeConfig
in locales
option.
this.$siteConfig
will be computed based on $route.path
:
// Under `/`:
this.$siteConfig
{
lang: 'en-US',
title: 'My Website'
}
// Under `/zh-cn`:
this.$siteConfig
{
lang: 'zh-cn',
title: 'ęēē½ē«'
}
Fund this Issue
Rewarded pull request
feat: i18n support #137submitted byegoist(10,740)
Click to copy link
Recent activities