Vite去除生產環境console.log

HuangBingQuan發表於2024-11-27
  • 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))
    }
  }
})

相關文章