All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 4m58s
Move Vue app from nginx/vue/ to top-level vue/ with its own Dockerfile, update docker-compose configs and nginx proxy to serve from the new container, and add initial Rust WASM crate (stp_wasm). Also fix .gitignore to exclude Rust target/ directories. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
71 lines
2.0 KiB
JavaScript
71 lines
2.0 KiB
JavaScript
import { createRouter, createWebHistory } from "vue-router";
|
|
import Landing from "@/views/Landing.vue";
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(import.meta.env.BASE_URL),
|
|
routes: [
|
|
{
|
|
path: "/",
|
|
name: "landing",
|
|
component: Landing,
|
|
},
|
|
{
|
|
path: "/stp",
|
|
name: "home",
|
|
component: () => import("@/views/home/Home.vue"),
|
|
},
|
|
{
|
|
path: "/cv",
|
|
name: "cv",
|
|
component: () => import("../views/CV/CV.vue"),
|
|
},
|
|
{
|
|
path: "/admin",
|
|
name: "admin",
|
|
component: () => import("../views/admin/Admin.vue"),
|
|
},
|
|
{
|
|
path: "/bookmarks",
|
|
name: "bookmarks",
|
|
component: () => import("../views/Bookmarks.vue"),
|
|
},
|
|
{
|
|
path: "/notes/:path(.*)*",
|
|
name: "notes",
|
|
component: () => import("../views/Notes.vue"),
|
|
},
|
|
{
|
|
path: "/shrines",
|
|
name: "shrine links",
|
|
component: () => import("../views/Shrines.vue"),
|
|
},
|
|
{
|
|
path: "/shrines/gto",
|
|
name: "gto shrine",
|
|
component: () => import("../views/shrines/GTO.vue"),
|
|
},
|
|
{
|
|
path: "/shrines/skipskipbenben",
|
|
name: "skipskipbenben shrine",
|
|
component: () => import("../views/shrines/Skipskipbenben.vue"),
|
|
},
|
|
{
|
|
path: "/shrines/evangelion",
|
|
name: "evangelion shrine",
|
|
component: () => import("../views/shrines/Evangelion.vue"),
|
|
},
|
|
{
|
|
path: "/shrines/demoman",
|
|
name: "demoman shrine",
|
|
component: () => import("../views/shrines/Demoman.vue"),
|
|
},
|
|
{
|
|
path: "/:pathMatch(.*)*",
|
|
name: "404",
|
|
component: () => import("../views/404.vue"),
|
|
},
|
|
],
|
|
});
|
|
|
|
export default router;
|