1
0
Fork 0
mirror of https://github.com/bastienwirtz/homer.git synced 2026-01-23 02:15:09 +00:00

Migrate to VueJS 3

This commit is contained in:
Bastien Wirtz 2022-06-04 22:40:48 +02:00
parent 95c589ba71
commit cbbed6346a
15 changed files with 2672 additions and 7394 deletions

15
vite.config.js Normal file
View file

@ -0,0 +1,15 @@
import { fileURLToPath, URL } from "url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});