module.exports = { title: 'MetaGame Wiki', tagline: 'Build the future you want to live in.', url: 'https://wiki.metagame.wtf', baseUrl: '/', favicon: 'img/mg-icon.png', organizationName: 'MetaFam', projectName: 'metagame-wiki', themeConfig: { colorMode: { defaultMode: 'dark', disableSwitch: true, }, // navbar: { // title: "MetaGame Wiki", // logo: { // alt: "MetaGame Logo", // src: "img/mg-icon.png", // }, // items: [ // { // to: "docs/introduction", // label: "๐Ÿฃ Start Here", // position: "left", // }, // { // to: "docs/enter-metagame/signpost", // label: "๐Ÿ—บ Enter MetaGame", // position: "left", // }, // { // to: "docs/enter-metagame/navigation-board", // label: "๐Ÿ‘ฃ Join a Raid", // position: "left", // }, // ], // }, // footer: { // style: "dark", // links: [ // { // title: "The Game", // items: [ // { // label: "๐ŸŒŒ Interspace", // href: "https://interspace.metagame.wtf", // }, // { // label: "๐Ÿงฌ The Source", // href: "https://metafam.github.io/TheSource/timeline/@metagame/", // }, // ], // }, // { // title: "Community", // items: [ // { // label: "๐Ÿ’ฌ Discord", // href: "https://discord.gg/VYZPBnx", // }, // { // label: "๐Ÿงต Forums", // href: "https://forum.metagame.wtf", // }, // ], // }, // { // title: "Social", // items: [ // { // label: "๐Ÿฆ Twitter", // href: "https://twitter.com/MetaFam", // }, // { // label: "๐Ÿ—ž Newsletter", // href: "https://metagame.substack.com", // }, // ], // }, // ], // }, }, presets: [ [ '@docusaurus/preset-classic', { docs: { sidebarPath: require.resolve('./sidebars.js'), editUrl: 'https://wiki.metagame.wtf/admin/#/?', }, theme: { customCss: require.resolve('./src/css/custom.scss'), }, }, ], ], plugins: [ require.resolve('docusaurus-lunr-search'), require.resolve('docusaurus-plugin-sass'), ], };