什么是Vite
Vite 是一种新型前端构建工具,最大的特点是快 !冷启动快,热更新快,打包也快。主要包含两部分功能:
- 1.开发服务器:基于原生ES模块特性,提供丰富的内建功能;
- 2.构建指令:使用Rollup打包代码,可输出高度优化后的静态资源。
为什么用Vite
随着项目越来越大,JavaScript代码量指数级增长,此时诸如webpack 等工具启动开发服务器需要很长时间,即使热更新HMR也需要几秒钟才能在浏览器中反应,严重影响了开发者的开发体验。
浏览器开始原生支持 ES 模块,且越来越多 JavaScript 工具使用编译型语言编写。
Vite就是在上述时代潮流下的产物,利用浏览器对ES模块的原生支持,实现快速的开发服务器启动与打包。同时,如果是Vue 使用者,相信也会对尤大的新玩具Vite 充满好奇,它天生就是用来提升Vue 开发者的用户体验。
尤大已经在社交平台上说过,相信有一天Vite会代替vue-cli
创建Vite项目
Vite需要Node.js >=12.0.0
npm init vite@latest
yarn create vite
project-name
vue
npm init vite@latest my-project-name --template vue-ts
yarn create vite my-project-name --template vue-ts
可以使用Awesome Vite 仓库的社区维护模板,可以用degit 工具搭建项目。
npx degit xiaoxian521/vue-pure-admin
npx degit pohunchn/vite-ts-quick vite-demo4
配置文件
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path';
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': resolve(__dirname, './src'),
},
},
clearScreen: false,
server: {
port: 9527,
open: true,
https: false,
proxy: {
'/api-name': 'http://127.0.01:8080',
'/api-server': {
target: 'http://127.0.0.1:8080',
changeOrigin: true,
}
}
},
build: {
terserOptions: {
compress: {
drop_debugger: true,
drop_console: true
}
}
}
})
|