shell
yarn add vite-plugin-babel @babel/core -D
vite.js
import babel from 'vite-plugin-babel';
export default defineConfig({
plugins: [
babel(),
vue(),
// 其他插件...
],
build: {
target: 'es2015'
// 其他
}
})
轉(zhuǎn)自贸伐,https://www.cnblogs.com/sirpho/articles/17508431.html