Evan Almloff 6fc65e9565 finish guiding principles 2 anni fa
..
fermi d461ffc011 feat: integrate fermi 3 anni fa
guide 6fc65e9565 finish guiding principles 2 anni fa
posts 3f3db39c28 update doc links 2 anni fa
reference ef9731eb74 update docs about dioxus desktop 2 anni fa
router eee6cbabb2 Update Router book to reflect crate separation and need for `web` feature. (#873) 2 anni fa
.nojekyll 54d050cf89 docs: strong improvmenets, first major section done 3 anni fa
README.md 5f1f3e1b58 start a contributing guide 2 anni fa

README.md

Building the Documentation

Dioxus uses a fork of MdBook with multilanguage support. To build the documentation, you will need to install the forked version of MdBook.

cargo install mdbook --git https://github.com/Demonthos/mdBook.git --branch master

Then, you can build the documentation by running:

Linux and MacOS:

cd docs && cd guide && mdbook build -d ../nightly/guide && cd .. && cd router && mdbook build -d ../nightly/router && cd .. && cd ..

Windows:

cd docs; cd guide; mdbook build -d ../nightly/guide; cd ..; cd router; mdbook build -d ../nightly/router; cd ..; cd ..