
* website/docs: Clean up config. Add types. * website/docs: Format MDX. * website: Fix build warnings. Lint badges frontmatter.
13 lines
352 B
JavaScript
13 lines
352 B
JavaScript
/**
|
|
* @file CommonJS Docusaurus config adapter.
|
|
*
|
|
* This exists to allow an ESM Docusaurus configuration to be imported in a CommonJS.
|
|
*
|
|
* @import Config from "./docusaurus.config.esm.mjs"
|
|
*/
|
|
|
|
/**
|
|
* @see {@linkcode Config} for the Docusaurus configuration type.
|
|
*/
|
|
module.exports = import("./docusaurus.config.esm.mjs").then(($) => $.default);
|