123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- // @ts-check
- // Note: type annotations allow type checking and IDEs autocompletion
- const lightCodeTheme = require('prism-react-renderer/themes/github');
- const darkCodeTheme = require('prism-react-renderer/themes/dracula');
- /** @type {import('@docusaurus/types').Config} */
- const config = {
- title: 'WebSerial Docs',
- tagline: 'A remote terminal for wireless microcontrollers',
- url: 'https://docs.webserial.pro',
- baseUrl: '/',
- onBrokenLinks: 'warn',
- onBrokenMarkdownLinks: 'warn',
- // favicon: 'img/dash-mini-logo.ico',
- // GitHub pages deployment config.
- // If you aren't using GitHub pages, you don't need these.
- organizationName: 'ayushsharma82', // Usually your GitHub org/user name.
- projectName: 'WebSerial', // Usually your repo name.
- deploymentBranch: 'gh-pages',
- trailingSlash: true,
- // Even if you don't use internalization, you can use this field to set useful
- // metadata like html lang. For example, if your site is Chinese, you may want
- // to replace "en" with "zh-Hans".
- i18n: {
- defaultLocale: 'en',
- locales: ['en'],
- },
- presets: [
- [
- 'classic',
- /** @type {import('@docusaurus/preset-classic').Options} */
- ({
- gtag: {
- trackingID: 'G-BCT2ENBRLE',
- anonymizeIP: true,
- },
- docs: {
- disableVersioning: true,
- routeBasePath: '/',
- sidebarPath: require.resolve('./sidebars.js'),
- },
- blog: false,
- theme: {
- customCss: require.resolve('./src/css/custom.css'),
- },
- sitemap: {
- changefreq: 'weekly',
- priority: 0.5,
- ignorePatterns: ['/tags/**'],
- filename: 'sitemap.xml',
- },
- }),
- ],
- ],
- themeConfig:
- /** @type {import('@docusaurus/preset-classic').ThemeConfig} */
- ({
- colorMode: {
- defaultMode: 'dark',
- respectPrefersColorScheme: false,
- },
- navbar: {
- title: "",
- logo: {
- src: 'v2/img/logo.png',
- alt: 'WebSerial',
- width: 180
- },
- items: [
- // {
- // type: 'doc',
- // docId: 'intro',
- // position: 'left',
- // label: 'Docs',
- // },
- // {to: '/blog', label: 'Blog', position: 'left'},
- {
- href: "https://github.com/ayushsharma82/WebSerial/",
- position: "right",
- className: "header-github-link",
- "aria-label": "GitHub repository",
- },
- ],
- },
- footer: {
- style: 'light',
- links: [
- {
- title: 'Docs',
- items: [
- {
- label: 'Getting Started',
- to: '/getting-started',
- },
- {
- label: 'Examples',
- to: '/examples',
- },
- {
- label: 'Commercial License',
- to: '/commercial-license',
- },
- ],
- },
- {
- title: 'Community',
- items: [
- {
- label: 'Github',
- href: 'https://github.com/ayushsharma82/WebSerial/',
- },
- {
- label: 'Twitter',
- href: 'https://twitter.com/asrocks5',
- },
- ],
- },
- {
- title: 'Support',
- items: [
- {
- label: 'Create an Issue (Repo)',
- href: 'https://github.com/ayushsharma82/WebSerial/issues',
- },
- {
- label: 'Contact me',
- href: 'https://webserial.pro/support',
- },
- ],
- },
- ],
- copyright: `Copyright © ${new Date().getFullYear()} SOFTT. All rights reserved.`,
- },
- prism: {
- theme: lightCodeTheme,
- darkTheme: darkCodeTheme,
- },
- }),
- };
- module.exports = config;
|