mirror of
https://github.com/ChronosX88/wind-vue.git
synced 2024-11-08 20:00:59 +00:00
15 lines
302 B
TypeScript
15 lines
302 B
TypeScript
|
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)),
|
||
|
},
|
||
|
},
|
||
|
});
|