mostly completed docs
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m38s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m38s
This commit is contained in:
@ -11,11 +11,6 @@ export type DocsContentMetadata = MDXMetadata & {
|
||||
*/
|
||||
title: string;
|
||||
|
||||
/**
|
||||
* The date this content was published.
|
||||
*/
|
||||
published: string;
|
||||
|
||||
/**
|
||||
* The summary of this content.
|
||||
*/
|
||||
@ -111,7 +106,9 @@ export function getDocsContent(): DocsContentMetadata[] {
|
||||
export function getDocContent(path?: string[]): DocsContentMetadata | undefined {
|
||||
const slug: string = path ? path.join("/") : "home";
|
||||
|
||||
return cachedDocs.find(doc => doc.slug === slug);
|
||||
return process.env.NODE_ENV === "development"
|
||||
? getDocsContent().find((doc: DocsContentMetadata) => doc.slug === slug)
|
||||
: cachedDocs.find((doc: DocsContentMetadata) => doc.slug === slug);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user