vite.config.js 290 B

123456789101112131415
  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. // https://vite.dev/config/
  4. export default defineConfig({
  5. plugins: [
  6. vue(),
  7. ],
  8. // resolve: {
  9. // alias: {
  10. // '@': fileURLToPath(new URL('./src', import.meta.url))
  11. // }
  12. // },
  13. base: './',
  14. })