123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- import {themes as prismThemes} from 'prism-react-renderer';
- import type {Config} from '@docusaurus/types';
- import type * as Preset from '@docusaurus/preset-classic';
- const config: Config = {
- title: 'Laradock',
- tagline: 'Full PHP development environment on Docker.',
- favicon: 'laradock.ico',
- // Set the production url of your site here
- url: 'https://laradock.io/',
- // Set the /<baseUrl>/ pathname under which your site is served
- // For GitHub pages deployment, it is often '/<projectName>/'
- baseUrl: '/',
- // GitHub pages deployment config.
- // If you aren't using GitHub pages, you don't need these.
- organizationName: 'laradock/laradock', // Usually your GitHub org/user name.
- projectName: 'laradock', // Usually your repo name.
- onBrokenLinks: 'throw',
- onBrokenMarkdownLinks: 'warn',
- // Even if you don't use internationalization, 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: [
- [
- '@docusaurus/preset-classic',
- {
- docs: {
- id: 'default',
- sidebarPath: './sidebars.ts',
- // Please change this to your repo.
- // Remove this to remove the "edit this page" links.
- editUrl:
- 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
- },
- // blog: {
- // showReadingTime: true,
- // // Please change this to your repo.
- // // Remove this to remove the "edit this page" links.
- // editUrl:
- // 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
- // },
- theme: {
- customCss: './src/css/custom.css',
- },
- gtag: {
- trackingID: 'G-CVZBKZ36Y5', // Update with your Google Analytics ID
- anonymizeIP: true,
- },
- } satisfies Preset.Options,
- ],
- ],
- themeConfig: {
- image: '/img/laradock/laradock-logo.jpg',
- navbar: {
- title: 'Laradock',
- logo: {
- alt: 'Laradock Logo',
- src: '/img/laradock/laradock-icon.png',
- },
- items: [
- // {
- // type: 'docSidebar',
- // sidebarId: 'tutorialSidebar',
- // position: 'left',
- // label: 'Tutorial',
- // },
- // {to: '/blog', label: 'Blog', position: 'left'},
- {
- href: 'https://github.com/laradock/laradock',
- label: 'GitHub',
- 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/Mahmoudz/Porto',
- // },
- // ],
- // },
- ],
- copyright: `Copyright © 2016 - ${new Date().getFullYear()} - Laradock - By <a href="https://zalt.me" target="_blank" rel="noopener noreferrer">Mahmoud Zalt</a>.`,
- },
- prism: {
- theme: prismThemes.github,
- darkTheme: prismThemes.dracula,
- },
- colorMode: {
- defaultMode: 'dark',
- },
- } satisfies Preset.ThemeConfig,
- };
- export default config;
|