client_front_end/vite.config.js

12 lines
275 B
JavaScript
Raw Normal View History

2023-08-04 09:58:04 +08:00
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import { fileURLToPath, URL } from "node:url";
export default defineConfig({
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
plugins: [vue()],
});