You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
5 years ago
|
module.exports = {
|
||
|
title: 'Tech Interview Handbook',
|
||
|
tagline:
|
||
|
'Carefully curated content to help you ace your next technical interview',
|
||
|
url: 'https://yangshun.github.io',
|
||
|
baseUrl: '/tech-interview-handbook/',
|
||
|
favicon: 'img/favicon.ico',
|
||
|
organizationName: 'yangshun',
|
||
|
projectName: 'tech-interview-handbook',
|
||
|
themeConfig: {
|
||
|
navbar: {
|
||
|
title: 'Tech Interview Handbook',
|
||
|
logo: {
|
||
|
alt: 'Tech Interview Handbook Logo',
|
||
|
src: 'img/logo.svg',
|
||
|
},
|
||
|
links: [
|
||
|
{to: 'introduction', label: 'Getting Started', position: 'right'},
|
||
|
{
|
||
|
href: 'https://github.com/yangshun/tech-interview-handbook',
|
||
|
label: 'GitHub',
|
||
|
position: 'right',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
footer: {
|
||
|
style: 'dark',
|
||
|
copyright: `Copyright © ${new Date().getFullYear()} Yangshun Tay. Built with Docusaurus.`,
|
||
|
},
|
||
|
},
|
||
|
presets: [
|
||
|
[
|
||
|
'@docusaurus/preset-classic',
|
||
|
{
|
||
|
docs: {
|
||
|
path: '../contents',
|
||
|
routeBasePath: '',
|
||
|
sidebarPath: require.resolve('./sidebars.js'),
|
||
|
},
|
||
|
theme: {
|
||
|
customCss: require.resolve('./src/css/custom.css'),
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
};
|