Vite去除生产环境console.log

  • vite.config.js中配置esbuild
import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'

export default defineConfig({
  plugins: [
    vue(),
  ],
  // ====
  esbuild: {
    drop: [],
    pure: ['console.log']
  },
  resolve: {
    alias: {
      '@': fileURLToPath(new URL('./src', import.meta.url))
    }
  }
})
posted @ 2024-11-27 15:57  HuangBingQuan  阅读(26)  评论(0编辑  收藏  举报