-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
42 lines (42 loc) · 1.18 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
module.exports = {
title: 'react-google-flight-datepicker',
tagline: 'Google Flight date-picker implemented in ReactJS',
url: 'https://JSLancerTeam.github.io/datepicker',
baseUrl: '/',
favicon: 'img/favico.png',
organizationName: 'jslancer', // Usually your GitHub org/user name.
projectName: 'react-google-flight-datepicker', // Usually your repo name.
stylesheets: [
'https://fonts.googleapis.com/css?family=Roboto'
],
themeConfig: {
navbar: {
title: 'React Google Flight DatePicker',
links: [
{
to: 'https://github.com/JSLancerTeam/react-google-flight-datepicker',
label: 'GitHub',
position: 'right'
}
]
},
footer: {
style: 'dark',
copyright: `Copyright © ${new Date().getFullYear()} JSLancer. Built with Docusaurus. Icons made by Freepik`
}
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/facebook/docusaurus/edit/master/website/'
},
theme: {
customCss: require.resolve('./src/css/custom.css')
}
}
]
]
};