-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f90cda
commit fe1cc29
Showing
8 changed files
with
223 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package.json | ||
package-lock.json | ||
yarn.lock | ||
.docusaurus | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"printWidth": 100, | ||
"tabWidth": 4, | ||
"trailingComma": "es5" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,39 @@ | ||
const title = 'Developer Center' | ||
const title = "Developer Center"; | ||
module.exports = { | ||
title, | ||
tagline: 'The tagline of my site', | ||
url: 'https://your-docusaurus-test-site.com', | ||
baseUrl: '/', | ||
favicon: 'img/favicon.png', | ||
organizationName: 'geocortex', // Usually your GitHub org/user name. | ||
projectName: 'Geocortex Developer Center', // Usually your repo name. | ||
themeConfig: { | ||
navbar: { | ||
title, | ||
logo: { | ||
alt: 'Geocortex Logo', | ||
src: 'img/logo.png', | ||
}, | ||
links: [ | ||
{to: 'docs/web/overview', label: 'Web', position: 'left'} | ||
], | ||
}, | ||
footer: { | ||
style: 'dark', | ||
links: [ | ||
], | ||
copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`, | ||
}, | ||
}, | ||
presets: [ | ||
[ | ||
'@docusaurus/preset-classic', | ||
{ | ||
docs: { | ||
sidebarPath: require.resolve('./sidebars.js'), | ||
editUrl: | ||
'https://github.com/geocortex/dev-center/edit/master/website/', | ||
title, | ||
tagline: "The tagline of my site", | ||
url: "https://your-docusaurus-test-site.com", | ||
baseUrl: "/", | ||
favicon: "img/favicon.png", | ||
organizationName: "geocortex", // Usually your GitHub org/user name. | ||
projectName: "Geocortex Developer Center", // Usually your repo name. | ||
themeConfig: { | ||
navbar: { | ||
title, | ||
logo: { | ||
alt: "Geocortex Logo", | ||
src: "img/logo.png", | ||
}, | ||
links: [{ to: "docs/web/overview", label: "Web", position: "left" }], | ||
}, | ||
theme: { | ||
customCss: require.resolve('./src/css/custom.css'), | ||
footer: { | ||
style: "dark", | ||
links: [], | ||
copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`, | ||
}, | ||
}, | ||
}, | ||
presets: [ | ||
[ | ||
"@docusaurus/preset-classic", | ||
{ | ||
docs: { | ||
sidebarPath: require.resolve("./sidebars.js"), | ||
editUrl: "https://github.com/geocortex/dev-center/edit/master/website/", | ||
}, | ||
theme: { | ||
customCss: require.resolve("./src/css/custom.css"), | ||
}, | ||
}, | ||
], | ||
], | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.