deviloric
/
piracy
Archived
3
0
Fork 0
This repository has been archived on 2021-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
piracy/docusaurus.config.js

76 lines
2.1 KiB
JavaScript
Raw Normal View History

2020-08-02 20:16:10 +02:00
module.exports = {
2020-08-23 15:33:09 +02:00
title: "WAREZZ",
2020-08-02 20:16:10 +02:00
tagline: "It's illegal cuz they can't tax you!",
2020-08-23 15:33:09 +02:00
url: "https://warezz.now.sh",
2020-08-02 20:16:10 +02:00
baseUrl: "/",
onBrokenLinks: "log",
favicon: "img/favicon.ico",
organizationName: "xuac", // Usually your GitHub org/user name.
2020-08-23 15:33:09 +02:00
projectName: "warezz", // Usually your repo name.
2020-08-02 20:16:10 +02:00
themeConfig: {
image: "img/ogimage.png",
navbar: {
2020-08-23 15:33:09 +02:00
title: "WAREZZ",
2020-08-02 20:16:10 +02:00
logo: {
alt: "Arrr!",
src: "img/logo.svg",
srcDark: "img/darklogo.svg",
},
items: [
{ to: "blog", label: "Blog", position: "left" },
{
2020-08-23 15:33:09 +02:00
href: "https://github.com/xuac/warezz",
2020-08-02 20:16:10 +02:00
label: "GitHub",
position: "left",
},
],
},
algolia: {
apiKey: "5470eae5ca52eb07867cedc3fdd33424",
indexName: "maximousblk_piracy",
},
prism: {
theme: require("prism-react-renderer/themes/dracula"),
},
googleAnalytics: {
trackingID: "UA-131672698-5",
anonymizeIP: true,
},
gtag: {
trackingID: "UA-131672698-5",
anonymizeIP: true,
},
announcementBar: {
id: "star", // Any value that will identify this message.
content:
2020-08-23 15:33:09 +02:00
'<b><a target="_blank" href="https://github.com/xuac/warezz#:~:text=star">PLEASE LEAVE A STAR ON GITHUB</a></b>',
2020-08-02 20:16:10 +02:00
backgroundColor: "var(--ifm-background-surface-color)", // Defaults to `#fff`.
textColor: "var(--ifm-color-primary)", // Defaults to `#000`.
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
routeBasePath: "/",
homePageId: "home",
sidebarPath: require.resolve("./sidebars.js"),
2020-08-23 15:33:09 +02:00
editUrl: "https://github.com/xuac/warezz/edit/master/",
2020-08-02 20:16:10 +02:00
},
blog: {
showReadingTime: true,
feedOptions: {
type: "all",
copyright: "It's free real estate! (CC0)",
},
2020-08-23 15:33:09 +02:00
editUrl: "https://github.com/xuac/warezz/edit/master/",
2020-08-02 20:16:10 +02:00
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};