Skip to content

Commit

Permalink
FIX: black screen after build (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefa2k authored Aug 17, 2022
1 parent d20a561 commit 5ebad23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions launcher/src/router/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createRouter, createWebHistory } from "vue-router";
import { createRouter, createWebHashHistory } from "vue-router";

import BaseHome from "../pages/BaseHome.vue";
import ClickInstall from "../pages/ClickInstall.vue";
Expand Down Expand Up @@ -94,6 +94,6 @@ const routes = [
},
];

const router = createRouter({ history: createWebHistory(), routes });
const router = createRouter({ history: createWebHashHistory(), routes });

export default router;

0 comments on commit 5ebad23

Please sign in to comment.