/** @type {import('@docusaurus/types').DocusaurusConfig} */ module.exports = { title: 'KubeVela', tagline: 'Make shipping applications more enjoyable.', url: 'https://kubevela.io', baseUrl: '/', onBrokenLinks: 'throw', onBrokenMarkdownLinks: 'throw', favicon: 'img/favicons/favicon.ico', organizationName: 'kubevela', // Usually your GitHub org/user name. projectName: 'kubevela.io', // Usually your repo name. i18n: { defaultLocale: 'en', locales: ['en', 'zh'], localeConfigs: { en: { label: 'English', }, zh: { label: '简体中文', }, }, }, themeConfig: { announcementBar: { id: 'start', content: '
浙公网安备 33011002016698号
浙ICP备12022327号-975 `, }, prism: { theme: require('prism-react-renderer/themes/dracula'), additionalLanguages: ['cue', 'powershell'], }, zoom: { selector: '.markdown :not(em) > img', config: { background: { light: 'rgb(255, 255, 255)', dark: 'rgb(50, 50, 50)', }, }, }, }, headTags: [ { tagName: "link", attributes: { rel: "apple-touch-icon", sizes: "180x180", href: "/img/favicons/apple-touch-icon.png", }, }, { tagName: "link", attributes: { rel: "icon", type: "image/png", sizes: "32x32", href: "/img/favicons/favicon-32x32.png", }, }, { tagName: "link", attributes: { rel: "icon", type: "image/png", sizes: "16x16", href: "/img/favicons/favicon-16x16.png", }, }, { tagName: "link", attributes: { rel: "icon", type: "image/svg+xml", href: "/img/favicons/favicon.svg", }, }, { tagName: "link", attributes: { rel: "icon", type: "image/png", href: "/img/favicons/favicon.png", }, }, { tagName: "link", attributes: { rel: "manifest", href: "/img/favicons/site.webmanifest", }, }, { tagName: "link", attributes: { rel: "mask-icon", color: "#ffffff", href: "/img/favicons/safari-pinned-tab.svg", }, }, { tagName: "meta", attributes: { name: "theme-color", content: "#ffffff", }, }, { tagName: "meta", attributes: { name: "msapplication-config", content: "/img/favicons/browserconfig.xml", }, }, ], presets: [ [ '@docusaurus/preset-classic', { sitemap: { changefreq: 'weekly', priority: 0.5, ignorePatterns: ['/tags/**'], filename: 'sitemap.xml', }, docs: { sidebarPath: require.resolve('./sidebars.js'), editUrl: function ({ locale, docPath }) { return `https://github.com/kubevela/kubevela.io/edit/main/docs/${docPath}`; }, showLastUpdateAuthor: true, showLastUpdateTime: true, includeCurrentVersion: true, remarkPlugins: [require('mdx-mermaid')], }, gtag: { trackingID: 'G-5GLR1Y52M7', anonymizeIP: false, }, blog: { blogSidebarTitle: 'All posts', blogSidebarCount: 'ALL', showReadingTime: true, editUrl: 'https://github.com/kubevela/kubevela.io/tree/main/', }, theme: { customCss: require.resolve('./src/css/custom.scss'), }, }, ], ], plugins: [ [ '@docusaurus/plugin-content-docs', { id: 'videos', path: 'videos', routeBasePath: 'videos', include: ['**/*.md'], sidebarPath: require.resolve('./sidebar-videos.js'), showLastUpdateAuthor: true, showLastUpdateTime: true, }, ], 'docusaurus-plugin-sass', require.resolve('docusaurus-plugin-image-zoom'), ], scripts: [ { src: '/custom.js', async: true, }, ], };