mirror of
				https://github.com/smallmain/cocos-enhance-kit.git
				synced 2025-11-04 13:15:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			155 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			155 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// @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: 'Cocos Service Pack',
 | 
						|
  tagline: '对 Cocos Creator 引擎进行特性新增、修复与优化的开源非官方服务包',
 | 
						|
  url: 'https://smallmain.github.io/cocos-service-pack/',
 | 
						|
  baseUrl: '/cocos-service-pack/',
 | 
						|
  onBrokenLinks: 'throw',
 | 
						|
  onBrokenMarkdownLinks: 'warn',
 | 
						|
  favicon: 'img/favicon.ico',
 | 
						|
 | 
						|
  // GitHub pages deployment config.
 | 
						|
  // If you aren't using GitHub pages, you don't need these.
 | 
						|
  organizationName: 'smallmain', // Usually your GitHub org/user name.
 | 
						|
  projectName: 'cocos-service-pack', // Usually your repo name.
 | 
						|
  deploymentBranch: 'gh-pages',
 | 
						|
 | 
						|
  // 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: 'zh',
 | 
						|
    locales: ['zh'],
 | 
						|
  },
 | 
						|
 | 
						|
  presets: [
 | 
						|
    [
 | 
						|
      'classic',
 | 
						|
      /** @type {import('@docusaurus/preset-classic').Options} */
 | 
						|
      ({
 | 
						|
        docs: {
 | 
						|
          sidebarPath: require.resolve('./sidebars.js'),
 | 
						|
        },
 | 
						|
        blog: {
 | 
						|
          showReadingTime: true,
 | 
						|
        },
 | 
						|
        theme: {
 | 
						|
          customCss: require.resolve('./src/css/custom.css'),
 | 
						|
        },
 | 
						|
      }),
 | 
						|
    ],
 | 
						|
  ],
 | 
						|
 | 
						|
  themeConfig:
 | 
						|
    /** @type {import('@docusaurus/preset-classic').ThemeConfig} */
 | 
						|
    ({
 | 
						|
      navbar: {
 | 
						|
        title: 'Cocos Service Pack',
 | 
						|
        // style: 'primary',
 | 
						|
        logo: {
 | 
						|
          alt: 'Cocos Service Pack',
 | 
						|
          src: 'img/logo.png',
 | 
						|
        },
 | 
						|
        items: [
 | 
						|
          {
 | 
						|
            to: '/',
 | 
						|
            label: '首页',
 | 
						|
            activeBaseRegex: '/$',
 | 
						|
            position: 'right',
 | 
						|
          },
 | 
						|
          {
 | 
						|
            type: 'doc',
 | 
						|
            docId: 'intro',
 | 
						|
            position: 'right',
 | 
						|
            label: '文档',
 | 
						|
          },
 | 
						|
          {
 | 
						|
            type: 'docsVersionDropdown',
 | 
						|
            position: 'right',
 | 
						|
            dropdownItemsAfter: [{ to: '/versions', label: 'All versions' }],
 | 
						|
            dropdownActiveClassDisabled: true,
 | 
						|
          },
 | 
						|
          // { to: '/blog', label: 'Blog', position: 'left' },
 | 
						|
          {
 | 
						|
            href: 'https://github.com/smallmain/cocos-service-pack',
 | 
						|
            label: 'GitHub',
 | 
						|
            position: 'right',
 | 
						|
          },
 | 
						|
          {
 | 
						|
            type: 'search',
 | 
						|
            position: 'right',
 | 
						|
          },
 | 
						|
        ],
 | 
						|
      },
 | 
						|
      footer: {
 | 
						|
        style: 'dark',
 | 
						|
        links: [
 | 
						|
          // {
 | 
						|
          //   title: 'Docs',
 | 
						|
          //   items: [
 | 
						|
          //     {
 | 
						|
          //       label: 'Tutorial',
 | 
						|
          //       to: '/docs/intro',
 | 
						|
          //     },
 | 
						|
          //   ],
 | 
						|
          // },
 | 
						|
          // {
 | 
						|
          //   title: 'Community',
 | 
						|
          //   items: [
 | 
						|
          //     {
 | 
						|
          //       label: 'Stack Overflow',
 | 
						|
          //       href: 'https://stackoverflow.com/questions/tagged/docusaurus',
 | 
						|
          //     },
 | 
						|
          //     {
 | 
						|
          //       label: 'Discord',
 | 
						|
          //       href: 'https://discordapp.com/invite/docusaurus',
 | 
						|
          //     },
 | 
						|
          //     {
 | 
						|
          //       label: 'Twitter',
 | 
						|
          //       href: 'https://twitter.com/docusaurus',
 | 
						|
          //     },
 | 
						|
          //   ],
 | 
						|
          // },
 | 
						|
          // {
 | 
						|
          //   title: 'More',
 | 
						|
          //   items: [
 | 
						|
          //     // {
 | 
						|
          //     //   label: 'Blog',
 | 
						|
          //     //   to: '/blog',
 | 
						|
          //     // },
 | 
						|
          //     {
 | 
						|
          //       label: 'GitHub',
 | 
						|
          //       href: 'https://github.com/facebook/docusaurus',
 | 
						|
          //     },
 | 
						|
          //   ],
 | 
						|
          // },
 | 
						|
        ],
 | 
						|
        copyright: `Copyright © ${new Date().getFullYear()} Cocos Service Pack.`,
 | 
						|
      },
 | 
						|
      prism: {
 | 
						|
        theme: lightCodeTheme,
 | 
						|
        darkTheme: darkCodeTheme,
 | 
						|
      },
 | 
						|
    }),
 | 
						|
  themes: [
 | 
						|
    [
 | 
						|
      require.resolve("@easyops-cn/docusaurus-search-local"),
 | 
						|
      {
 | 
						|
        hashed: true,
 | 
						|
        indexPages: true,
 | 
						|
        language: ['en', 'zh'],
 | 
						|
        removeDefaultStemmer: true,
 | 
						|
        searchResultLimits: 10,
 | 
						|
      },
 | 
						|
    ],
 | 
						|
  ],
 | 
						|
};
 | 
						|
 | 
						|
module.exports = config;
 |