grid-apps-cmms/docusaurus.config.js
bakedpotatolord 46ec1c97e1 add GS favicon
2025-06-10 11:44:45 -06:00

45 lines
890 B
JavaScript

module.exports = {
url: 'https://docs.grid.space',
title: 'grid.space docs',
baseUrl : '/',
favicon: 'img/gs-logo.png',
staticDirectories: ['./docs/static/'],
// ...
plugins: [require.resolve('docusaurus-lunr-search')],
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
/* docs plugin options */
path: 'docs',
routeBasePath: '/',
sidebarPath: './docs/sidebars.js',
// sidebar:{
// hideable: true,
// }
},
blog: false,
theme: {
customCss: './docs/src/custom.css',
},
},
],
],
themeConfig:{
navbar:{
title: "Grid.Space Docs",
logo: {
alt: "Grid.Space Logo",
src: "img/gs-logo.png",
href: "https://docs.grid.space",
width: 32,
height:32,
},
},
},
};