vite.config.js 530 B

12345678910111213141516171819202122232425262728293031
  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. import path from 'path'
  4. // https://vite.dev/config/
  5. export default defineConfig({
  6. plugins: [vue()],
  7. resolve: {
  8. alias: {
  9. '@': path.resolve(__dirname, 'src')
  10. }
  11. },
  12. server: {
  13. // 添加热更新配置
  14. hmr: {
  15. overlay: true
  16. },
  17. // 自动打开浏览器
  18. open: true,
  19. // 监听文件变化
  20. watch: {
  21. usePolling: true
  22. }
  23. },
  24. esbuild: {
  25. target: 'es2015'
  26. },
  27. build: {
  28. target: 'es2015'
  29. }
  30. })