vite 项目创建、插件配置

手动创建项目:

yarn add -D vite

yarn vite build

yarn vite preview // 预览打包文件

vite 模板创建:

yarn create vite

插件:

配置兼容ie 11:

yarn add -D @vitejs/plugin-legacy

yarn add -D terser

转换了:

复制代码
import { defineConfig } from "vite";
import legacy from "@vitejs/plugin-legacy";

export default defineConfig({
	plugins:[legacy({
		targets:["defaults","ie 11"]
	})]
})

参考:前端构建工具(webpack&vite)教程李立超