fix(buidl): fixed build

This commit is contained in:
2025-06-19 00:49:17 +03:00
parent 960f58be06
commit cff5e3488e
7 changed files with 29 additions and 21 deletions

View File

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