diff --git a/ivette/.gitignore b/ivette/.gitignore
index a00454cab6e5877aa557c9c62baa07198848454d..da037a9e2fa9fa6eb676dcadabf0f8486c4b79bf 100644
--- a/ivette/.gitignore
+++ b/ivette/.gitignore
@@ -9,8 +9,6 @@ yarn.lock
 yarn-error.log
 /bin
 /dist
-/build
 /doc/html
-/doc/typedoc
 
 # --------------------------------------------------------------------------
diff --git a/ivette/Makefile b/ivette/Makefile
index c4d4907ad66ff63c9a34d0a9c81d388b1cb56ebb..2953dba00dc0212be36f4527f70df8edb2b92089 100644
--- a/ivette/Makefile
+++ b/ivette/Makefile
@@ -28,17 +28,9 @@ lint: dome-pkg dome-templ
 # --- Ivette Documentation
 # --------------------------------------------------------------------------
 
-# can also use dome-doc to generate Dome-only documentation
-
-D_ICONS=$(addprefix $(DOME)/doc/template/gallery-, head.html icons.html tail.html)
-D_OUT=doc/html
-
 doc:
 	@echo "[Ivette] documentation"
-	@rm -fr $(D_OUT)
-	@mkdir -p $(D_OUT)
 	@yarn run typedoc
-	@echo "[Ivette]   $(D_OUT)/index.html"
 
 # --------------------------------------------------------------------------
 # --- Ivette Plugins
diff --git a/ivette/tsconfig.json b/ivette/tsconfig.json
index 104ce5b319708149bb84c8ebcf2aaa98c92efea9..c153f4aa0d8fd3fe4677f4245761892ab313e186 100644
--- a/ivette/tsconfig.json
+++ b/ivette/tsconfig.json
@@ -83,7 +83,7 @@
     "includeVersion": true,
     "disableSources": true,
     "mode": "modules",
-    "out": "doc/typedoc",
+    "out": "doc/html",
     "excludePrivate": true,
     "stripInternal": true,
     "readme": "./README.md",