diff --git a/.gitignore b/.gitignore index ff7e3fcbf..8b049f455 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,8 @@ **/*.ipr **/*.iws +.DS_Store + docs/node_modules/ docs/src/.vuepress/.cache/ docs/src/.vuepress/.temp/ diff --git a/docs/src/.vuepress/navbar/en.ts b/docs/src/.vuepress/navbar/en.ts index 432db0d31..128ca34f9 100644 --- a/docs/src/.vuepress/navbar/en.ts +++ b/docs/src/.vuepress/navbar/en.ts @@ -47,12 +47,13 @@ export const enNavbar = navbar([ { text: 'ASF', children: [ - { text: 'Foundation', link: 'https://www.apache.org/' }, + { text: 'Foundation', target:'_self', link: 'https://www.apache.org/' }, { text: 'License', link: 'https://www.apache.org/licenses/' }, { text: 'Security', link: 'https://www.apache.org/security/' }, { text: 'Sponsorship', link: 'https://www.apache.org/foundation/sponsorship.html' }, { text: 'Thanks', link: 'https://www.apache.org/foundation/thanks.html' }, { text: 'Current Events', link: 'https://www.apache.org/events/current-event' }, + { text: 'Privacy', link: 'https://privacy.apache.org/policies/privacy-policy-public.html' }, ], }, ]); diff --git a/docs/src/.vuepress/navbar/zh.ts b/docs/src/.vuepress/navbar/zh.ts index c434303c2..99decad1a 100644 --- a/docs/src/.vuepress/navbar/zh.ts +++ b/docs/src/.vuepress/navbar/zh.ts @@ -53,6 +53,7 @@ export const zhNavbar = navbar([ { text: '赞助', link: 'https://www.apache.org/foundation/sponsorship.html' }, { text: '致谢', link: 'https://www.apache.org/foundation/thanks.html' }, { text: '活动', link: 'https://www.apache.org/events/current-event' }, + { text: '隐私', link: 'https://privacy.apache.org/policies/privacy-policy-public.html' }, ], }, ]);