diff --git a/docusaurus.config.js b/docusaurus.config.js index 8588bcc..293318a 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -1,7 +1,7 @@ const math = require('remark-math') const katex = require('rehype-katex') -module.exports = { +const config = { title: 'Rapier', tagline: 'Fast 2D and 3D physics engine for the Rust programming language.', url: 'https://rapier.rs', @@ -181,3 +181,5 @@ module.exports = { 'https://cdn.jsdelivr.net/npm/katex@0.11.0/dist/katex.min.css' ] }; + +export default config; \ No newline at end of file diff --git a/sidebar_community.js b/sidebar_community.js index 6ab96f0..e7c8f68 100644 --- a/sidebar_community.js +++ b/sidebar_community.js @@ -1,6 +1,8 @@ -module.exports = { +const config = { community: [ 'support', 'acknowledgements' ], }; + +export default config; \ No newline at end of file diff --git a/sidebar_docs.js b/sidebar_docs.js index bd79754..d64c18d 100644 --- a/sidebar_docs.js +++ b/sidebar_docs.js @@ -75,7 +75,7 @@ if (!process.env.PUBLISH_MODE) { } -module.exports = { +const config = { docs: [ 'about_rapier', { @@ -119,3 +119,5 @@ module.exports = { } ], }; + +export default config; \ No newline at end of file