Files
pdfme/website/docusaurus.config.js
Kyohei Fukuda 9b95ea7e58 Update website (#520)
* Change website keyword

* website image optimize

* website: Add pdfme Cloud link to navigation bar

* website: Add pdfme Cloud link to footer

* update docusaurus

* add SidebarBanner

* Update readme
2024-07-25 21:14:40 +09:00

205 lines
4.8 KiB
JavaScript

// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const path = require('path');
const webpack = require('webpack');
const lightCodeTheme = require('prism-react-renderer/themes/github');
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'pdfme',
url: 'https://pdfme.com',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'favicon.ico',
organizationName: 'pdfme',
projectName: 'pdfme',
deploymentBranch: 'website',
trailingSlash: false,
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/pdfme/pdfme/tree/main/website/',
},
blog: {
postsPerPage: 'ALL',
blogSidebarTitle: 'All posts',
blogSidebarCount: 'ALL',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
gtag: {
trackingID: 'G-1Z2MZW44WP',
},
},
],
],
plugins: [
[
'@docusaurus/plugin-client-redirects',
{
redirects: [
{
to: '/docs/tables',
from: '/docs/guides/tables',
},
{
to: '/docs/custom-fonts',
from: '/docs/guides/custom-fonts',
},
{
to: '/docs/development-guide',
from: '/development-guide',
},
],
},
],
function myPlugin() {
return {
name: 'custom-docusaurus-plugin',
configureWebpack() {
const newConfig = {
plugins: [
new webpack.IgnorePlugin({
resourceRegExp: /canvas/,
}),
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'],
process: 'process/browser.js',
}),
],
};
return newConfig;
},
};
},
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
{
announcementBar: {
id: 'support_us',
content: `⭐️ &nbsp; If you like pdfme, give it a star on <a target="_blank" rel="noopener noreferrer" href="https://github.com/pdfme/pdfme">GitHub</a>! &nbsp; ⭐️`,
},
image: 'img/ogimage.png',
docs: {
sidebar: {
hideable: true,
},
},
hideOnScroll: true,
navbar: {
title: 'pdfme',
items: [
{
type: 'doc',
docId: 'getting-started',
position: 'right',
label: 'Docs',
},
{
to: '/demo',
position: 'right',
label: 'Demo Apps',
},
{
to: '/template-design',
position: 'right',
label: 'Template Design',
},
{
to: '/blog',
label: 'Blog',
position: 'right'
},
{
href: 'https://github.com/pdfme/pdfme',
label: 'GitHub',
position: 'right',
},
{
href: 'https://discord.gg/xWPTJbmgNV',
label: 'Discord',
position: 'right',
},
{
href: 'https://app.pdfme.com',
label: 'Try pdfme Cloud',
position: 'right',
}
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Getting Started',
to: '/docs/getting-started',
},
{
label: 'Supported Features',
to: '/docs/supported-features',
},
],
},
{
title: 'More',
items: [
{
label: 'Demo Apps',
to: '/demo',
},
{
label: 'Template Design',
to: '/template-design',
},
{
label: 'Blog',
to: '/blog',
},
{
label: 'Try pdfme Cloud',
href: 'https://app.pdfme.com',
}
],
},
{
title: 'Community',
items: [
{
label: 'Github',
href: 'https://github.com/pdfme/pdfme',
},
{
label: 'Discord',
href: 'https://discord.gg/xWPTJbmgNV',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} pdfme`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
algolia: {
appId: 'V6YWG1D4SV',
apiKey: '873346e96f9110d660c39fd1edd7eb17',
indexName: 'pdfme',
},
},
};
module.exports = config;