summaryrefslogtreecommitdiff
path: root/docs/docusaurus.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'docs/docusaurus.config.js')
-rw-r--r--docs/docusaurus.config.js82
1 files changed, 41 insertions, 41 deletions
diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js
index ef19f090..c2991841 100644
--- a/docs/docusaurus.config.js
+++ b/docs/docusaurus.config.js
@@ -1,49 +1,49 @@
// @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 lightCodeTheme = require("prism-react-renderer/themes/github");
+const darkCodeTheme = require("prism-react-renderer/themes/dracula");
/** @type {import('@docusaurus/types').Config} */
const config = {
- title: 'Continue',
- tagline: 'an open source autopilot for refining software',
- favicon: 'img/favicon.ico',
+ title: "Continue",
+ tagline:
+ "the open-source library for accelerating software development with language models",
+ favicon: "img/favicon.ico",
// Set the production url of your site here
- url: 'https://continue.dev',
+ url: "https://continue.dev",
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
- baseUrl: '/',
+ baseUrl: "/",
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
- organizationName: 'continuedev', // Usually your GitHub org/user name.
- projectName: 'continue', // Usually your repo name.
+ organizationName: "continuedev", // Usually your GitHub org/user name.
+ projectName: "continue", // Usually your repo name.
- onBrokenLinks: 'throw',
- onBrokenMarkdownLinks: 'warn',
+ onBrokenLinks: "throw",
+ 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'],
+ defaultLocale: "en",
+ locales: ["en"],
},
presets: [
[
- 'classic',
+ "classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
- sidebarPath: require.resolve('./sidebars.js'),
- editUrl:
- 'https://github.com/continuedev/continue/',
+ sidebarPath: require.resolve("./sidebars.js"),
+ editUrl: "https://github.com/continuedev/continue/",
},
theme: {
- customCss: require.resolve('./src/css/custom.css'),
+ customCss: require.resolve("./src/css/custom.css"),
},
}),
],
@@ -53,59 +53,59 @@ const config = {
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
- image: 'img/docusaurus-social-card.jpg',
+ image: "img/docusaurus-social-card.jpg",
navbar: {
- title: 'Continue',
+ title: "Continue",
logo: {
- alt: 'My Site Logo',
- src: 'img/logo.svg',
+ alt: "My Site Logo",
+ src: "img/logo.svg",
},
items: [
{
- type: 'docSidebar',
- sidebarId: 'docsSidebar',
- position: 'left',
- label: 'Docs',
+ type: "docSidebar",
+ sidebarId: "docsSidebar",
+ position: "left",
+ label: "Docs",
},
{
- href: 'https://github.com/continuedev/continue',
- label: 'GitHub',
- position: 'right',
+ href: "https://github.com/continuedev/continue",
+ label: "GitHub",
+ position: "right",
},
],
},
footer: {
- style: 'dark',
+ style: "dark",
links: [
{
- title: 'Docs',
+ title: "Docs",
items: [
{
- label: 'Introduction',
- to: '/docs/intro',
+ label: "Introduction",
+ to: "/docs/intro",
},
],
},
{
- title: 'Community',
+ title: "Community",
items: [
{
- label: 'Twitter',
- href: 'https://twitter.com/continuedev',
+ label: "Twitter",
+ href: "https://twitter.com/continuedev",
},
],
},
{
- title: 'More',
+ title: "More",
items: [
{
- label: 'GitHub',
- href: 'https://github.com/continuedev/continue',
+ label: "GitHub",
+ href: "https://github.com/continuedev/continue",
},
],
},
],
- copyright: `Copyright © ${new Date().getFullYear()} Continue, Inc.`,
+ copyright: `Copyright © ${new Date().getFullYear()} Continue Dev, Inc.`,
},
prism: {
theme: lightCodeTheme,
@@ -114,4 +114,4 @@ const config = {
}),
};
-module.exports = config; \ No newline at end of file
+module.exports = config;