123456789101112131415 |
- import { defineConfig } from 'vite'
- import { fileURLToPath, URL } from "node:url";
- import vue from '@vitejs/plugin-vue'
- // https://vitejs.dev/config/
- export default defineConfig({
- root: "src/",
- base: './',
- plugins: [vue()],
- resolve: {
- alias: {
- "@": fileURLToPath(new URL("./src", import.meta.url)),
- },
- },
- })
|