2021-06-15 22:38:40 +02:00
/ * *
* Copyright ( c ) Facebook , Inc . and its affiliates .
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree .
* /
const path = require ( 'path' ) ;
const versions = require ( './versions.json' ) ;
// This probably only makes sense for the beta phase, temporary
function getNextBetaVersionName ( ) {
const expectedPrefix = '' ;
const lastReleasedVersion = versions [ 0 ] ;
if ( ! lastReleasedVersion . includes ( expectedPrefix ) ) {
throw new Error (
'this code is only meant to be used during the 2.0 beta phase.' ,
) ;
}
const version = parseInt ( lastReleasedVersion . replace ( expectedPrefix , '' ) , 10 ) ;
return ` ${ expectedPrefix } ${ version + 1 } ` ;
}
const allDocHomesPaths = [
'/docs/' ,
'/docs/next/' ,
... versions . slice ( 1 ) . map ( ( version ) => ` /docs/ ${ version } / ` ) ,
] ;
const isDev = process . env . NODE _ENV === 'development' ;
const isDeployPreview =
process . env . NETLIFY && process . env . CONTEXT === 'deploy-preview' ;
const baseUrl = process . env . BASE _URL || '/' ;
const isBootstrapPreset = process . env . DOCUSAURUS _PRESET === 'bootstrap' ;
// Special deployment for staging locales until they get enough translations
// https://app.netlify.com/sites/docusaurus-i18n-staging
// https://docusaurus-i18n-staging.netlify.app/
const isI18nStaging = process . env . I18N _STAGING === 'true' ;
const isVersioningDisabled = ! ! process . env . DISABLE _VERSIONING || isI18nStaging ;
2021-06-15 17:50:38 +02:00
/** @type {import('@docusaurus/types').DocusaurusConfig} */
2021-06-15 22:38:40 +02:00
( module . exports = {
title : 'Docusaurus' ,
tagline : 'Build optimized websites quickly, focus on your content' ,
organizationName : 'facebook' ,
projectName : 'docusaurus' ,
baseUrl ,
baseUrlIssueBanner : true ,
url : 'https://docusaurus.io' ,
i18n : {
defaultLocale : 'en' ,
locales : isDeployPreview
? // Deploy preview: keep it fast!
[ 'en' ]
: isI18nStaging
? // Staging locales: https://docusaurus-i18n-staging.netlify.app/
[ 'en' , 'ja' ]
: // Production locales
[ 'en' , 'fr' , 'ko' , 'zh-CN' ] ,
} ,
onBrokenLinks : 'warn' ,
2021-06-15 17:50:38 +02:00
onBrokenMarkdownLinks : 'warn' ,
2021-06-15 22:38:40 +02:00
favicon : 'img/docusaurus.ico' ,
// customFields: {
// description:
// 'An optimized site generator in React. Docusaurus helps you to move fast and write content. Build documentation websites, blogs, marketing pages, and more.',
// },
themes : [ '@docusaurus/theme-live-codeblock' ] ,
plugins : [
[
'@docusaurus/plugin-client-redirects' ,
{
fromExtensions : [ 'html' ] ,
createRedirects : function ( path ) {
// redirect to /docs from /docs/introduction,
// as introduction has been made the home doc
if ( allDocHomesPaths . includes ( path ) ) {
return [ ` ${ path } /introduction ` ] ;
}
} ,
// redirects: [
// {
// from: ['/'],
// to: '/docs',
// },
// {
// from: ['/docs/support', '/docs/next/support'],
// to: '/community/support',
// },
// {
// from: ['/docs/team', '/docs/next/team'],
// to: '/community/team',
// },
// {
// from: ['/docs/resources', '/docs/next/resources'],
// to: '/community/resources',
// },
// ],
} ,
] ,
[
'@docusaurus/plugin-ideal-image' ,
{
quality : 70 ,
max : 1030 , // max resized image's size.
min : 640 , // min resized image's size. if original is lower, use that size.
steps : 2 , // the max number of images generated between min and max (inclusive)
} ,
] ,
[
'@docusaurus/plugin-pwa' ,
{
debug : isDeployPreview ,
offlineModeActivationStrategies : [
'appInstalled' ,
'standalone' ,
'queryString' ,
] ,
// swRegister: false,
swCustom : path . resolve ( _ _dirname , 'src/sw.js' ) ,
pwaHead : [
{
tagName : 'link' ,
rel : 'icon' ,
href : 'img/docusaurus.png' ,
} ,
{
tagName : 'link' ,
rel : 'manifest' ,
href : ` ${ baseUrl } manifest.json ` ,
} ,
{
tagName : 'meta' ,
name : 'theme-color' ,
content : 'rgb(37, 194, 160)' ,
} ,
{
tagName : 'meta' ,
name : 'apple-mobile-web-app-capable' ,
content : 'yes' ,
} ,
{
tagName : 'meta' ,
name : 'apple-mobile-web-app-status-bar-style' ,
content : '#000' ,
} ,
{
tagName : 'link' ,
rel : 'apple-touch-icon' ,
href : 'img/docusaurus.png' ,
} ,
{
tagName : 'link' ,
rel : 'mask-icon' ,
href : 'img/docusaurus.svg' ,
color : 'rgb(62, 204, 94)' ,
} ,
{
tagName : 'meta' ,
name : 'msapplication-TileImage' ,
content : 'img/docusaurus.png' ,
} ,
{
tagName : 'meta' ,
name : 'msapplication-TileColor' ,
content : '#000' ,
} ,
] ,
} ,
] ,
] ,
presets : [
[
isBootstrapPreset
? '@docusaurus/preset-bootstrap'
: '@docusaurus/preset-classic' ,
{
debug : true , // force debug plugin usage
docs : {
routeBasePath : '/' ,
path : 'docs' ,
sidebarPath : require . resolve ( './sidebars.js' ) ,
editUrl : ( { locale , docPath } ) => {
if ( locale !== 'en' ) {
return ` https://crowdin.com/project/docusaurus-v2/ ${ locale } ` ;
}
// We want users to submit doc updates to the upstream/next version!
// Otherwise we risk losing the update on the next release.
const nextVersionDocsDirPath = 'docs' ;
return ` https://github.com/facebook/docusaurus/edit/master/website/ ${ nextVersionDocsDirPath } / ${ docPath } ` ;
} ,
showLastUpdateAuthor : true ,
showLastUpdateTime : true ,
// remarkPlugins: [
// [require('@docusaurus/remark-plugin-npm2yarn'), { sync: true }],
// ],
disableVersioning : isVersioningDisabled ,
lastVersion : isDev ? 'current' : undefined ,
onlyIncludeVersions :
! isVersioningDisabled && ( isDev || isDeployPreview )
? [ 'current' , ... versions . slice ( 0 , 2 ) ]
: undefined ,
versions : {
current : {
// label: `${getNextBetaVersionName()} 🚧`,
// label: `2.0 🎉`,
label : ` 2.0 ` ,
path : ` 2.0 ` ,
} ,
} ,
} ,
theme : {
customCss : [ require . resolve ( './src/css/custom.css' ) ] ,
} ,
} ,
] ,
] ,
2021-06-15 17:50:38 +02:00
themeConfig : {
2021-06-15 22:38:40 +02:00
liveCodeBlock : {
playgroundPosition : 'bottom' ,
} ,
hideableSidebar : true ,
colorMode : {
defaultMode : 'light' ,
disableSwitch : false ,
respectPrefersColorScheme : true ,
} ,
// announcementBar: {
// id: 'v1-new-domain',
// content:
// '➡️ Docusaurus v1 documentation has moved to <a target="_blank" rel="noopener noreferrer" href="https://v1.docusaurus.io/">v1.docusaurus.io</a>! 🔄',
// },
/ *
announcementBar : {
id : 'supportus' ,
content :
'⭐️ If you like Docusaurus, give it a star on <a target="_blank" rel="noopener noreferrer" href="https://github.com/facebook/docusaurus">GitHub</a>! ⭐️' ,
} ,
* /
prism : {
theme : require ( 'prism-react-renderer/themes/github' ) ,
darkTheme : require ( 'prism-react-renderer/themes/dracula' ) ,
} ,
image : 'img/docusaurus-soc.png' ,
// metadatas: [{name: 'twitter:card', content: 'summary'}],
gtag : {
trackingID : 'UA-141789564-1' ,
} ,
algolia : {
apiKey : '47ecd3b21be71c5822571b9f59e52544' ,
indexName : 'docusaurus-2' ,
contextualSearch : true ,
} ,
2021-06-15 17:50:38 +02:00
navbar : {
2021-06-15 22:38:40 +02:00
hideOnScroll : true ,
title : 'OHIF' ,
2021-06-15 17:50:38 +02:00
logo : {
2021-06-15 22:38:40 +02:00
alt : 'OHIF Logo' ,
src : 'img/ohif.svg' ,
srcDark : 'img/ohif.svg' ,
2021-06-15 17:50:38 +02:00
} ,
items : [
{
type : 'doc' ,
position : 'left' ,
2021-06-15 22:38:40 +02:00
docId : 'OHIF Documentation' ,
label : 'Docs' ,
2021-06-15 17:50:38 +02:00
} ,
2021-06-15 22:38:40 +02:00
// {to: 'blog', label: 'Blog', position: 'left'},
// {to: 'showcase', label: 'Showcase', position: 'left'},
// right
2021-06-15 17:50:38 +02:00
{
2021-06-15 22:38:40 +02:00
type : 'docsVersionDropdown' ,
2021-06-15 17:50:38 +02:00
position : 'right' ,
2021-06-15 22:38:40 +02:00
dropdownActiveClassDisabled : true ,
2021-06-15 17:50:38 +02:00
} ,
{
2021-06-15 22:38:40 +02:00
type : 'localeDropdown' ,
position : 'right' ,
dropdownItemsAfter : [
2021-06-15 17:50:38 +02:00
{
2021-06-15 22:38:40 +02:00
to : 'https://github.com/facebook/docusaurus/issues/3526' ,
label : 'Help Us Translate' ,
2021-06-15 17:50:38 +02:00
} ,
] ,
} ,
{
2021-06-15 22:38:40 +02:00
href : 'https://github.com/facebook/docusaurus' ,
position : 'right' ,
className : 'header-github-link' ,
'aria-label' : 'GitHub repository' ,
2021-06-15 17:50:38 +02:00
} ,
] ,
} ,
2021-06-15 22:38:40 +02:00
footer : {
style : 'dark' ,
// links: [
// {
// title: 'Learn',
// items: [
// {
// label: 'Introduction',
// to: 'docs',
// },
// {
// label: 'Installation',
// to: 'docs/installation',
// },
// {
// label: 'Migration from v1 to v2',
// to: 'docs/migration',
// },
// ],
// },
// {
// title: 'Community',
// items: [
// {
// label: 'Stack Overflow',
// href: 'https://stackoverflow.com/questions/tagged/docusaurus',
// },
// {
// label: 'Feedback',
// to: 'feedback',
// },
// {
// label: 'Discord',
// href: 'https://discordapp.com/invite/docusaurus',
// },
// {
// label: 'Help',
// to: '/community/support',
// },
// ],
// },
// {
// title: 'More',
// items: [
// {
// label: 'Blog',
// to: 'blog',
// },
// {
// label: 'GitHub',
// href: 'https://github.com/facebook/docusaurus',
// },
// {
// label: 'Twitter',
// href: 'https://twitter.com/docusaurus',
// },
// {
// html: `
// <a href="https://www.netlify.com" target="_blank" rel="noreferrer noopener" aria-label="Deploys by Netlify">
// <img src="https://www.netlify.com/img/global/badges/netlify-color-accent.svg" alt="Deploys by Netlify" />
// </a>
// `,
// },
// ],
// },
// {
// title: 'Legal',
// // Please do not remove the privacy and terms, it's a legal requirement.
// items: [
// {
// label: 'Privacy',
// href: 'https://opensource.facebook.com/legal/privacy/',
// },
// {
// label: 'Terms',
// href: 'https://opensource.facebook.com/legal/terms/',
// },
// {
// label: 'Data Policy',
// href: 'https://opensource.facebook.com/legal/data-policy/',
// },
// {
// label: 'Cookie Policy',
// href: 'https://opensource.facebook.com/legal/cookie-policy/',
// },
// ],
// },
// ],
logo : {
alt : 'OHIF ' ,
src : 'img/ohif.svg' ,
href : 'https://ohif.org' ,
2021-06-15 17:50:38 +02:00
} ,
2021-06-15 22:38:40 +02:00
copyright : ` Copyright © OHIF ` ,
} ,
} ,
} ) ;