]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
Fix theming issue & subfolder hosting
authorBastien Wirtz <bastien.wirtz@gmail.com>
Tue, 12 Jul 2022 12:07:10 +0000 (14:07 +0200)
committerBastien Wirtz <bastien.wirtz@gmail.com>
Tue, 12 Jul 2022 12:07:10 +0000 (14:07 +0200)
index.html
src/assets/app.scss
src/main.js
vite.config.js

index a08e12633bd91a29e37199b32a60b364b8ee0dac..5a0014cbe4ea218f08aef1678a341e1911d73417 100644 (file)
@@ -9,7 +9,7 @@
     <title>Homer</title>
   </head>
   <body>
-    <div id="app"></div>
+    <div id="app-mount"></div>
     <script type="module" src="/src/main.js"></script>
   </body>
 </html>
index 5102f93da21eb1b55371058ab08d1b7eb6b0c498..d112482626220d32deb9b1042595c2cc08c86f16 100644 (file)
@@ -13,7 +13,7 @@
   text-overflow: ellipsis;
 }
 
-html, body, body #app {
+html, body, body #app-mount, body #app {
   height: 100%;
   background-color: var(--background);
 }
index 164d29074202e1a5fe704b140a205dbf645cb574..a1d7b471dd93686db232ef45d47010318f024193 100644 (file)
@@ -10,4 +10,4 @@ app.component("DynamicStyle", (_props, context) => {
   return h("style", {}, context.slots);
 });
 
-app.mount("#app");
+app.mount("#app-mount");
index 46fe9096c03bbcacfa58e20c2111413ce2f2d2cc..cee87279b94de8322c0231c1eebd3ecdf8efa7a8 100644 (file)
@@ -6,6 +6,7 @@ import vue from "@vitejs/plugin-vue";
 
 // https://vitejs.dev/config/
 export default defineConfig({
+  base: "",
   build: {
     assetsDir: "resources",
   },