Skip to content

Commit

Permalink
Fixed the build command...
Browse files Browse the repository at this point in the history
... generates all files inside the `generated/` folder ready to be uploaded to a web server.
  • Loading branch information
fredericsimard committed Jan 29, 2025
1 parent 9724ef9 commit b59319a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@ serve: clean
mkdocs serve -f config/es/mkdocs.yml --dev-addr 127.0.0.1:8002 &
wait

build:
mkdocs build -f config/en/mkdocs.yml --clean
build: clean
mkdir -p generated # Ensure the folder exists
mkdocs build -f config/en/mkdocs.yml --clean
mkdocs build -f config/fr/mkdocs.yml --clean
mkdocs build -f config/es/mkdocs.yml --clean
cp docs/index.html generated/index.html

0 comments on commit b59319a

Please sign in to comment.