mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 12:27:46 +00:00
81 lines
2.2 KiB
JavaScript
81 lines
2.2 KiB
JavaScript
// @ts-check
|
|
// Note: type annotations allow type checking and IDEs autocompletion
|
|
|
|
const lightCodeTheme = require('prism-react-renderer/themes/github');
|
|
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
|
|
|
|
const footer = require('./footer');
|
|
const navbar = require('./navbar');
|
|
const plugins = require('./plugins');
|
|
|
|
/** @type {import('@docusaurus/types').Config} */
|
|
const config = {
|
|
title: 'SailPoint Developer Community',
|
|
url: 'https://developer.sailpoint.com',
|
|
baseUrl: '/developer.sailpoint.com/',
|
|
favicon: 'img/SailPoint-Logo-Icon.ico',
|
|
onBrokenLinks: 'warn',
|
|
onBrokenMarkdownLinks: 'warn',
|
|
onDuplicateRoutes: 'warn',
|
|
i18n: {
|
|
defaultLocale: 'en',
|
|
locales: ['en'],
|
|
},
|
|
|
|
presets: [
|
|
[
|
|
'classic',
|
|
/** @type {import('@docusaurus/preset-classic').Options} */
|
|
({
|
|
docs: {
|
|
editUrl: "https://github.com/sailpoint-oss/developer-community-site/edit/main/",
|
|
showLastUpdateAuthor: true,
|
|
showLastUpdateTime: true,
|
|
sidebarCollapsible: true,
|
|
sidebarPath: require.resolve('./sidebars.js'),
|
|
docLayoutComponent: "@theme/DocPage",
|
|
docItemComponent: "@theme/ApiItem" // Derived from docusaurus-theme-openapi
|
|
},
|
|
theme: {
|
|
customCss: require.resolve('./src/css/custom.css'),
|
|
},
|
|
}),
|
|
],
|
|
],
|
|
|
|
themeConfig:
|
|
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
|
|
({
|
|
algolia: {
|
|
appId: 'TB01H1DFAM',
|
|
apiKey: '726952a7a9389c484b6c96808a3e0010',
|
|
indexName: 'prod_DEVELOPER_SAILPOINT_COM',
|
|
searchPagePath: false,
|
|
placeholder: "Search the Developer Community",
|
|
},
|
|
docs: {
|
|
sidebar: {
|
|
hideable: true,
|
|
autoCollapseCategories: false,
|
|
},
|
|
},
|
|
colorMode: {
|
|
defaultMode: "light",
|
|
respectPrefersColorScheme: true
|
|
},
|
|
navbar: navbar,
|
|
footer: footer,
|
|
prism: {
|
|
theme: lightCodeTheme,
|
|
darkTheme: darkCodeTheme,
|
|
additionalLanguages: ["ruby", "csharp", "php"],
|
|
},
|
|
}),
|
|
|
|
plugins: plugins,
|
|
|
|
themes: ["docusaurus-theme-openapi-docs"]
|
|
};
|
|
|
|
module.exports = config;
|