tested path

This commit is contained in:
Warunee Tamkoo 2024-12-06 17:41:48 +07:00
parent a3de0771da
commit 461ce1ab78
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ import type { RouteRecordRaw } from "vue-router";
// import { ref } from "vue";
// import { useRoute } from "vue-router";
const Error404NotFound = () => import("@/views/Error404NotFound.vue");
const data = await fetch("/toc.json").then((r) => r.json());
const data = await fetch("/manual/toc.json").then((r) => r.json());
// const routes = useRoute();
// const hasQueryParam = ref<boolean>(false);

View file

@ -7,7 +7,7 @@ import { quasar, transformAssetUrls } from "@quasar/vite-plugin";
// https://vitejs.dev/config/
export default defineConfig({
base: "/manual/",
base: "/manual",
plugins: [
vue({
template: { transformAssetUrls },