diff --git a/README.md b/README.md
index 7e56da0c44bac13293af9a7f4718e63699d1560f..45e9cecbf845786f5a53217d09ac81669efe092d 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,8 @@ For up-to-date requirements, resources, help and guidance, visit [competition.ig
 The static assets are in the `static` directory. The layout and templates are in the `wiki` directory, and the pages live in the `wiki > pages` directory. Unless you are an experienced and/or adventurous human, you probably shouldn't change other files.
 
 ├── README.md                       -> The file you are currently reading
-├── index.html                      -> Single HTML file for the wiki
+├── public
+|   ├── index.html                  -> Single HTML file for the wiki
 ├── package.json                    -> Manages project metadata and dependencies
 ├── src/
 │   ├── components/                 -> Components (Like Navbar, Timelines, ...)
diff --git a/src/contents/Home.tsx b/src/contents/Home.tsx
index 3516f1b0a7f15e55cffc29cd85d299783c71b775..df3bb08e27e3cfcba437bc8784e38775658d7b9a 100644
--- a/src/contents/Home.tsx
+++ b/src/contents/Home.tsx
@@ -8,7 +8,7 @@ export function Home() {
         <div className="col">
           <h2>Wiki under construction!</h2>
           <hr />
-          Hello21
+          Hello22
         </div>
       </div>
       <div className="row">
diff --git a/vite.config.js b/vite.config.js
index 549e6f26f9ac7b8b9f4288af49048f3f446d3d78..7db86729208c924e708941fb078f94f196c401e5 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -12,9 +12,9 @@ export default () => {
       sourcemap: true, // Ensure source maps are enabled
       outDir: 'dist', // Vite defaults to `dist`, make sure it's set correctly
     }, */
-    root: 'public',
+    /* root: 'public', */
     build: {
-      outDir: '../dist'
+      outDir: "public"
     }
   });