Skip to content

Commit

Permalink
fix: correct gh pages link
Browse files Browse the repository at this point in the history
  • Loading branch information
altrusl committed Nov 9, 2023
1 parent 49ebe19 commit 1b893ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Vue webapp template

A basic template for building a new Vue 3 web application
A basic template for scaffolding a new Vue 3 web application
using the latest technologies and best practices.

2 changes: 1 addition & 1 deletion src/router/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { createRouter, createWebHashHistory } from "vue-router";

import { routes } from "./routes.js";
import { routes } from "./routes";

const router = createRouter({
history: createWebHashHistory(),
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import vue from "@vitejs/plugin-vue";
// import { URL, fileURLToPath } from "node:url";
// https://vitejs.dev/config/
export default defineConfig({
base: "/vue-website-template/",
base: "/vue-webapp/",
build: {
target: "esnext",
},
Expand Down

0 comments on commit 1b893ee

Please sign in to comment.