chore: Refactored home page content out of App.vue and into separate index.vue file created for the vue-router

This commit is contained in:
jezzahehn 2025-05-20 18:21:58 -04:00
parent da604a14f6
commit 297947266d
4 changed files with 42 additions and 57 deletions

View file

@ -1,4 +1,5 @@
import { defineConfig } from "vite";
import { fileURLToPath, URL } from 'node:url'
import vue from "@vitejs/plugin-vue";
import tailwindcss from "@tailwindcss/vite";
import vueRouter from "unplugin-vue-router/vite";
@ -14,4 +15,9 @@ export default defineConfig({
outDir: "/var/www/viossa.net",
emptyOutDir: true,
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
});