
This commit does not introduce functional changes, besides renaming every mention of 'wizard' with 'setup assistant'. In order to run the manager setup assistant use: ./flamenco-manager -setup-assistant The change was introduced to favor more neutral and descriptive working for this functionality. Thanks to Sybren for helping to get this done!
20 lines
408 B
JavaScript
20 lines
408 B
JavaScript
import { createRouter, createWebHistory } from "vue-router";
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(import.meta.env.BASE_URL),
|
|
routes: [
|
|
{
|
|
path: "/",
|
|
name: "index",
|
|
component: () => import("../views/SetupAssistantView.vue"),
|
|
},
|
|
{
|
|
path: "/:pathMatch(.*)*",
|
|
name: "redirect-to-index",
|
|
redirect: '/',
|
|
},
|
|
],
|
|
});
|
|
|
|
export default router;
|