File tree Expand file tree Collapse file tree 2 files changed +64
-0
lines changed
Expand file tree Collapse file tree 2 files changed +64
-0
lines changed Original file line number Diff line number Diff line change 1+ import { defineAdditionalConfig } from 'vitepress'
2+ import { sidebar } from './sidebar'
3+
4+ export default defineAdditionalConfig ( {
5+ lang : 'en-US' ,
6+ description : 'RustFS - MinIO alternative, high-performance distributed storage solution' ,
7+
8+ themeConfig : {
9+ nav : [
10+ { text : 'Home' , link : 'https://rustfs.com' } ,
11+ { text : 'Installation' , link : '/en/installation/linux' } ,
12+ { text : 'SDK' , link : '/en/sdk' } ,
13+ { text : 'Demo' , link : 'https://play.rustfs.com' } ,
14+ { text : 'Community' , link : 'https://github.com/rustfs/rustfs/discussions' } ,
15+ { text : 'About' , link : '/en/about' } ,
16+ ] ,
17+
18+ sidebar : {
19+ '/en/' : sidebar ,
20+ } ,
21+
22+ editLink : {
23+ pattern : 'https://github.com/rustfs/docs.rustfs.com/edit/main/docs/:path' ,
24+ text : 'Edit this page on GitHub'
25+ } ,
26+
27+ footer : {
28+ message : 'Released under the Apache License 2.0.' ,
29+ copyright : 'Copyright © 2025 RustFS'
30+ }
31+ }
32+ } )
Original file line number Diff line number Diff line change 1+ import { defineAdditionalConfig } from 'vitepress'
2+ import { sidebar } from './sidebar'
3+
4+ export default defineAdditionalConfig ( {
5+ lang : 'pt-BR' ,
6+ description : 'RustFS - Alternativa ao MinIO, solução de armazenamento distribuído de alta performance' ,
7+
8+ themeConfig : {
9+ nav : [
10+ { text : 'Início' , link : 'https://rustfs.com' } ,
11+ { text : 'Instalação' , link : '/pt/installation/linux' } ,
12+ { text : 'SDK' , link : '/pt/sdk' } ,
13+ { text : 'Demo' , link : 'https://play.rustfs.com' } ,
14+ { text : 'Comunidade' , link : 'https://github.com/rustfs/rustfs/discussions' } ,
15+ { text : 'Sobre' , link : '/pt/about' } ,
16+ ] ,
17+
18+ sidebar : {
19+ '/pt/' : sidebar ,
20+ } ,
21+
22+ editLink : {
23+ pattern : 'https://github.com/rustfs/docs.rustfs.com/edit/main/docs/:path' ,
24+ text : 'Editar esta página no GitHub'
25+ } ,
26+
27+ footer : {
28+ message : 'Lançado sob a Licença Apache 2.0.' ,
29+ copyright : 'Copyright © 2025 RustFS'
30+ }
31+ }
32+ } )
You can’t perform that action at this time.
0 commit comments