We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84ee450 commit 7946290Copy full SHA for 7946290
Makefile
@@ -20,3 +20,9 @@ upgrade: node_modules ## Yarn upgrade
20
.PHONY: build
21
build: node_modules ## Yarn build
22
@docker run -it --rm --user=${USER_ID}:${GROUP_ID} -v ./:/app/ -w /app/ node:23 bash -c "yarn build"
23
+
24
+.PHONY: clean
25
+clean: ## Remove files
26
+ @rm -rf node_modules
27
+ @rm -rf build
28
+ @rm -rf .docusaurus
0 commit comments