vite打包兼容低版本 发表于 2024-01-26 | 更新于: 2024-01-26 1234yarn add @vitejs/plugin-legacy -D// 或yarn add terser --dev 1234567891011121314import legacy from '@vitejs/plugin-legacy'export default defineConfig({ //... plugins: [ // ... legacy({ targets: ['defaults', "> 1%", "last 2 versions", "not ie <= 8"], cssTarget: ['defaults', "> 1%", "last 2 versions", "not ie <= 8"], additionalLegacyPolyfills:['regenerator-runtime/runtime'] // 面向IE11时需要此插件 }) ]})