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:
parent
da604a14f6
commit
297947266d
4 changed files with 42 additions and 57 deletions
|
|
@ -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))
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue