🐛 Fixes stupid 404

This commit is contained in:
Daniel Svitan
2024-03-04 22:02:15 +01:00
parent 1a595f0613
commit 5cd6047f06

View File

@@ -7,6 +7,7 @@ import "./index.css";
const routes = [
{ path: "/", component: Home },
{ path: "/playground", component: Playground },
{ path: "/:pathMatch(.*)*", redirect: "/" },
];
const router = VueRouter.createRouter({