Compare commits

..

1 Commits

Author SHA1 Message Date
4a47b53aef 1
555
2026-04-13 06:33:27 +00:00

25
frontEnd/vite.config.ts Normal file
View File

@@ -0,0 +1,25 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { join } from "path";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": join(__dirname, "/src"),
},
extensions: [".js", ".vue"],
},
server: {
host: true,
},
css: {
preprocessorOptions: {
scss: {
api: "modern",
silenceDeprecations: ["legacy-js-api"],
},
},
},
});