|
|
|
@ -1,61 +1,62 @@
|
|
|
|
|
// @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: 'NocoDB', |
|
|
|
|
tagline: 'The Open Source Airtable Alternative', |
|
|
|
|
favicon: 'img/favicon.ico', |
|
|
|
|
title: "NocoDB", |
|
|
|
|
tagline: "The Open Source Airtable Alternative", |
|
|
|
|
favicon: "img/favicon.ico", |
|
|
|
|
|
|
|
|
|
// Set the production url of your site here
|
|
|
|
|
url: 'https://nocodb.com', |
|
|
|
|
url: "https://nocodb.com", |
|
|
|
|
// 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: 'nocodb', // Usually your GitHub org/user name.
|
|
|
|
|
projectName: 'nocodb', // Usually your repo name.
|
|
|
|
|
organizationName: "nocodb", // Usually your GitHub org/user name.
|
|
|
|
|
projectName: "nocodb", // Usually your repo name.
|
|
|
|
|
|
|
|
|
|
onBrokenLinks: 'throw', |
|
|
|
|
onBrokenMarkdownLinks: 'warn', |
|
|
|
|
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'], |
|
|
|
|
defaultLocale: "en", |
|
|
|
|
locales: ["en"], |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
plugins: ['docusaurus-plugin-sass'], |
|
|
|
|
plugins: ["docusaurus-plugin-sass"], |
|
|
|
|
|
|
|
|
|
presets: [ |
|
|
|
|
[ |
|
|
|
|
'classic', |
|
|
|
|
"classic", |
|
|
|
|
/** @type {import('@docusaurus/preset-classic').Options} */ |
|
|
|
|
({ |
|
|
|
|
docs: { |
|
|
|
|
sidebarPath: require.resolve('./sidebars.js'), |
|
|
|
|
routeBasePath: '/', |
|
|
|
|
editUrl: 'https://github.com/nocodb/nocodb/tree/develop/packages/noco-docs/docs/', |
|
|
|
|
lastVersion: 'current', |
|
|
|
|
sidebarPath: require.resolve("./sidebars.js"), |
|
|
|
|
routeBasePath: "/", |
|
|
|
|
editUrl: |
|
|
|
|
"https://github.com/nocodb/nocodb/tree/develop/packages/noco-docs/docs/", |
|
|
|
|
lastVersion: "current", |
|
|
|
|
versions: { |
|
|
|
|
current: { |
|
|
|
|
label: 'Latest', |
|
|
|
|
label: "Latest", |
|
|
|
|
}, |
|
|
|
|
"0.109.7": { |
|
|
|
|
label: "0.109.7 - Old UI", |
|
|
|
|
}, |
|
|
|
|
'0.109.7': { |
|
|
|
|
label: '0.109.7 - Old UI', |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
blog: false, |
|
|
|
|
theme: { |
|
|
|
|
customCss: require.resolve('./src/css/custom.scss'), |
|
|
|
|
customCss: require.resolve("./src/css/custom.scss"), |
|
|
|
|
}, |
|
|
|
|
}), |
|
|
|
|
], |
|
|
|
@ -65,54 +66,54 @@ 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: '', |
|
|
|
|
title: "", |
|
|
|
|
logo: { |
|
|
|
|
alt: 'NocoDB', |
|
|
|
|
src: 'img/nocodb-full-color.png', |
|
|
|
|
alt: "NocoDB", |
|
|
|
|
src: "img/nocodb-full-color.png", |
|
|
|
|
}, |
|
|
|
|
items: [ |
|
|
|
|
{ |
|
|
|
|
type: 'docsVersionDropdown', |
|
|
|
|
position: 'right', |
|
|
|
|
type: "docsVersionDropdown", |
|
|
|
|
position: "right", |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
href: 'https://github.com/nocodb/nocodb', |
|
|
|
|
position: 'right', |
|
|
|
|
className: 'header-github-link', |
|
|
|
|
'aria-label': 'GitHub repository', |
|
|
|
|
href: "https://github.com/nocodb/nocodb", |
|
|
|
|
position: "right", |
|
|
|
|
className: "header-github-link", |
|
|
|
|
"aria-label": "GitHub repository", |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
footer: { |
|
|
|
|
style: 'dark', |
|
|
|
|
style: "dark", |
|
|
|
|
logo: { |
|
|
|
|
alt: 'NocoDB', |
|
|
|
|
src: 'img/icon.png', |
|
|
|
|
alt: "NocoDB", |
|
|
|
|
src: "img/icon.png", |
|
|
|
|
width: 50, |
|
|
|
|
}, |
|
|
|
|
links: [ |
|
|
|
|
{ |
|
|
|
|
label: 'GitHub', |
|
|
|
|
href: 'https://github.com/facebook/docusaurus', |
|
|
|
|
label: "GitHub", |
|
|
|
|
href: "https://github.com/facebook/docusaurus", |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: 'Website', |
|
|
|
|
href: 'https://nocodb.com/', |
|
|
|
|
label: "Website", |
|
|
|
|
href: "https://nocodb.com/", |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: 'Community', |
|
|
|
|
href: 'https://community.nocodb.com/', |
|
|
|
|
label: "Community", |
|
|
|
|
href: "https://community.nocodb.com/", |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: 'Discord', |
|
|
|
|
href: 'https://discord.gg/5RgZmkW', |
|
|
|
|
label: "Discord", |
|
|
|
|
href: "https://discord.gg/5RgZmkW", |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: 'Twitter', |
|
|
|
|
href: 'https://twitter.com/nocodb', |
|
|
|
|
} |
|
|
|
|
label: "Twitter", |
|
|
|
|
href: "https://twitter.com/nocodb", |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
copyright: `Copyright © ${new Date().getFullYear()} NocoDB`, |
|
|
|
|
}, |
|
|
|
|