github.com/laof/lite-speed-test@v0.0.0-20230930011949-1f39b7037845/web/gui/vite.config.js (about)

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