178 lines
5.0 KiB
JavaScript
178 lines
5.0 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");
|
|
|
|
/** @type {import('@docusaurus/types').Config} */
|
|
const config = {
|
|
title: "Jan",
|
|
tagline: "Run your own AI",
|
|
favicon: "img/favicon.ico",
|
|
|
|
// Set the production url of your site here
|
|
url: "https://jan.ai",
|
|
// Set the /<baseUrl>/ pathname under which your site is served
|
|
// For GitHub pages deployment, it is often '/<projectName>/'
|
|
baseUrl: "/",
|
|
|
|
// GitHub pages deployment config.
|
|
// If you aren't using GitHub pages, you don't need these.
|
|
organizationName: "janhq", // Usually your GitHub org/user name.
|
|
projectName: "jan", // Usually your repo name.
|
|
|
|
onBrokenLinks: "warn",
|
|
onBrokenMarkdownLinks: "warn",
|
|
|
|
// Even if you don't use internalization, you can use this field to set useful
|
|
// metadata like html lang. For example, if your site is Chinese, you may want
|
|
// to replace "en" with "zh-Hans".
|
|
i18n: {
|
|
defaultLocale: "en",
|
|
locales: ["en"],
|
|
},
|
|
|
|
// Plugins we added
|
|
plugins: [
|
|
"docusaurus-plugin-sass",
|
|
async function myPlugin(context, options) {
|
|
return {
|
|
name: "docusaurus-tailwindcss",
|
|
configurePostCss(postcssOptions) {
|
|
// Appends TailwindCSS and AutoPrefixer.
|
|
postcssOptions.plugins.push(require("tailwindcss"));
|
|
postcssOptions.plugins.push(require("autoprefixer"));
|
|
return postcssOptions;
|
|
},
|
|
};
|
|
},
|
|
],
|
|
|
|
// Only for react live
|
|
themes: ["@docusaurus/theme-live-codeblock"],
|
|
|
|
// The classic preset will relay each option entry to the respective sub plugin/theme.
|
|
presets: [
|
|
[
|
|
"classic",
|
|
/** @type {import('@docusaurus/preset-classic').Options} */
|
|
({
|
|
// Will be passed to @docusaurus/plugin-content-docs (false to disable)
|
|
docs: {
|
|
routeBasePath: "/",
|
|
sidebarPath: require.resolve("./sidebars.js"),
|
|
editUrl: "https://github.com/janhq/jan/tree/main/docs",
|
|
showLastUpdateAuthor: true,
|
|
showLastUpdateTime: true,
|
|
},
|
|
// Will be passed to @docusaurus/plugin-content-sitemap (false to disable)
|
|
sitemap: {
|
|
changefreq: "daily",
|
|
priority: 1.0,
|
|
ignorePatterns: ["/tags/**"],
|
|
filename: "sitemap.xml",
|
|
},
|
|
// Will be passed to @docusaurus/plugin-content-blog (false to disable)
|
|
blog: false,
|
|
// Will be passed to @docusaurus/theme-classic.
|
|
theme: {
|
|
customCss: require.resolve("./src/styles/main.scss"),
|
|
},
|
|
// Will be passed to @docusaurus/plugin-content-pages (false to disable)
|
|
// pages: {},
|
|
}),
|
|
],
|
|
// Redoc preset
|
|
[
|
|
"redocusaurus",
|
|
{
|
|
specs: [
|
|
{
|
|
spec: "openapi/OpenAPISpec.json", // can be local file, url, or parsed json object
|
|
route: "/api/",
|
|
},
|
|
],
|
|
theme: {
|
|
primaryColor: "#1a73e8",
|
|
primaryColorDark: "#1a73e8",
|
|
// redocOptions: { hideDownloadButton: false },
|
|
},
|
|
},
|
|
],
|
|
],
|
|
|
|
// Docs: https://docusaurus.io/docs/api/themes/configuration
|
|
themeConfig:
|
|
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
|
|
({
|
|
image: "img/jan-social-card.png",
|
|
// Only for react live
|
|
liveCodeBlock: {
|
|
playgroundPosition: "bottom",
|
|
},
|
|
navbar: {
|
|
title: "Jan",
|
|
logo: {
|
|
alt: "Jan Logo",
|
|
src: "img/logo.svg",
|
|
},
|
|
items: [
|
|
// Navbar Top
|
|
// {
|
|
// type: "docSidebar",
|
|
// sidebarId: "featuresSidebar",
|
|
// position: "left",
|
|
// label: "Platform",
|
|
// },
|
|
// {
|
|
// type: "docSidebar",
|
|
// sidebarId: "solutionsSidebar",
|
|
// position: "left",
|
|
// label: "Solutions",
|
|
// },
|
|
{
|
|
type: "docSidebar",
|
|
sidebarId: "companySidebar",
|
|
position: "left",
|
|
label: "Company",
|
|
},
|
|
// Navbar right
|
|
// {
|
|
// type: "docSidebar",
|
|
// sidebarId: "guidesSidebar",
|
|
// position: "right",
|
|
// label: "Guides",
|
|
// },
|
|
{
|
|
type: "docSidebar",
|
|
sidebarId: "docsSidebar",
|
|
position: "right",
|
|
label: "Developer",
|
|
},
|
|
// {
|
|
// position: "right",
|
|
// label: "API",
|
|
// to: "/api",
|
|
// },
|
|
// {
|
|
// href: "https://github.com/janhq/jan",
|
|
// label: "GitHub",
|
|
// position: "right",
|
|
// },
|
|
],
|
|
},
|
|
prism: {
|
|
theme: lightCodeTheme,
|
|
darkTheme: darkCodeTheme,
|
|
additionalLanguages: ["python"],
|
|
},
|
|
colorMode: {
|
|
defaultMode: "dark",
|
|
disableSwitch: false,
|
|
respectPrefersColorScheme: false,
|
|
},
|
|
}),
|
|
};
|
|
|
|
module.exports = config;
|