replace webpack w/ vite

This commit is contained in:
2026-02-23 16:47:19 +01:00
parent e427d9db26
commit 3e5267933c
10 changed files with 819 additions and 11019 deletions

14
vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import path from "path";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
// https://vite.dev/config/
export default defineConfig({
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
scss: path.resolve(__dirname, "./src/scss")
}
},
plugins: [vue()]
});