-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
147 lines (145 loc) · 3.9 KB
/
docusaurus.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
const math = require("remark-math");
const katex = require("rehype-katex");
const internetProfiles = {
linkedin: {
label: "LinkedIn",
href: "https://www.linkedin.com/in/aryan-koundal-5b217b202/",
},
github: {
label: "GitHub",
href: "https://github.com/AryanKoundal",
},
email: {
label: "Email",
href: "mailto:[email protected]",
},
blog: {
label: "Blog",
to: "blog",
},
docs: {
label: "Documentation",
to: "docs",
},
projects: {
label: "Projects",
to: "projects",
},
resume: {
label: "Resume",
href: "",
},
};
module.exports = {
title: "Aryan Koundal",
tagline:
"I am a Full Stack Web Developer.",
url: "https://AryanKoundal.github.io",
baseUrl: "/",
// url: 'https://docusaurus-2.netlify.app', // Url to your site with no trailing slash
// baseUrl: '/', // Base directory of your site relative to your repo
onBrokenLinks: "ignore",
favicon: "img/logo.png",
organizationName: "AryanKoundal",
projectName: "website",
trailingSlash: false,
themeConfig: {
colorMode: {
defaultMode: "dark",
disableSwitch: true,
respectPrefersColorScheme: false,
},
navbar: {
hideOnScroll: true,
title: "Aryan Koundal",
logo: {
alt: "Aryan Koundal",
src: "img/logo.png",
target: "_self",
},
items: [
{ to: "blog/", label: "Blog", position: "left" },
{
to: "docs/",
activeBasePath: "docs",
label: "Tutorials",
position: "left",
},
{ to: "projects/", label: "Projects", position: "right" },
// {
// href: "https://drive.google.com/drive/folders/1VQLWubjgx4TpCxw401KPAOwLsNZ5D8JL",
// label: "Resume",
// position: "right",
// },
],
},
footer: {
// links: [
// {
// title: "Connect",
// items: [
// internetProfiles.linkedin,
// internetProfiles.github,
// internetProfiles.padlet,
// internetProfiles.email,
// ],
// },
// {
// title: "Discover",
// items: [
// internetProfiles.blog,
// internetProfiles.docs,
// internetProfiles.projects,
// internetProfiles.resume,
// ],
// },
// ],
// I built this website for my own personal use, but you are free to use it so long as you credit me. You can do so by linking back to website :)
copyright: `<a href="https://github.com/AryanKoundal">Design by Aryan Koundal</a> `,
// • <a href="https://github.com/AryanKoundal/kaya-folio/commits/main">Updated ${new Date().toLocaleDateString()}</a>
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
disableVersioning: false,
editCurrentVersion: false,
remarkPlugins: [math],
rehypePlugins: [katex],
},
blog: {
showReadingTime: true,
// Please change this to your repo.
editUrl: "https://github.com/AryanKoundal/kaya-folio/tree/main/website/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
stylesheets: [
{
href: "https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css",
type: "text/css",
integrity:
"sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X",
crossorigin: "anonymous",
},
],
plugins: [
async function tailwindPlugin(context, options) {
return {
name: "docusaurus-tailwindcss",
configurePostCss(postcssOptions) {
postcssOptions.plugins.push(require("tailwindcss"));
postcssOptions.plugins.push(require("autoprefixer"));
return postcssOptions;
},
};
},
],
};