vite config打包时移除console和debugger

//vite.config.js

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

export default defineConfig({
    plugins: [vue()],
    build: {
        minify: 'terser',
        terserOptions: {
            compress: {
                //生产环境时移除console
                drop_console: true,
                drop_debugger: true,
            },
        },
    },
})
posted @ 2022-07-29 23:01  七つ一旋桜  阅读(549)  评论(0)    收藏  举报