🐳 Adds Dockerfile

This commit is contained in:
Daniel Svitan
2025-02-07 11:14:10 +01:00
parent 5cd6047f06
commit f0beda5881
6 changed files with 470 additions and 11 deletions

View File

@@ -1,13 +1,13 @@
import { createApp } from "vue";
import {createApp} from "vue";
import Home from "./pages/Home.vue";
import * as VueRouter from "vue-router";
import Playground from "./pages/Playground.vue";
import "./index.css";
const routes = [
{ path: "/", component: Home },
{ path: "/playground", component: Playground },
{ path: "/:pathMatch(.*)*", redirect: "/" },
{path: "/", component: Home},
{path: "/playground", component: Playground},
{path: "/:pathMatch(.*)*", redirect: "/"},
];
const router = VueRouter.createRouter({