139 lines
3.9 KiB
TypeScript
139 lines
3.9 KiB
TypeScript
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: 'A Docker setup that lets you run a full PHP development environment in seconds.',
|
|
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',
|
|
editUrl:
|
|
'https://github.com/laradock/laradock/tree/master/DOCUMENTATION/',
|
|
},
|
|
// 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 © 2015 - ${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;
|