Skip to content

Commit

Permalink
fix hot reload
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrixyz committed Jul 19, 2024
1 parent 9daa9b0 commit a8999c0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -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',
Expand Down Expand Up @@ -181,3 +181,5 @@ module.exports = {
'https://cdn.jsdelivr.net/npm/katex@0.11.0/dist/katex.min.css'
]
};

export default config;
4 changes: 3 additions & 1 deletion sidebar_community.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module.exports = {
const config = {
community: [
'support',
'acknowledgements'
],
};

export default config;
4 changes: 3 additions & 1 deletion sidebar_docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ if (!process.env.PUBLISH_MODE) {
}


module.exports = {
const config = {
docs: [
'about_rapier',
{
Expand Down Expand Up @@ -119,3 +119,5 @@ module.exports = {
}
],
};

export default config;

0 comments on commit a8999c0

Please sign in to comment.