21 lines
1.2 KiB
Markdown
21 lines
1.2 KiB
Markdown
# Vite ⚡
|
||
|
||
> Next Generation Frontend Tooling
|
||
|
||
- 💡 Instant Server Start
|
||
- ⚡️ Lightning Fast HMR
|
||
- 🛠️ Rich Features
|
||
- 📦 Optimized Build
|
||
- 🔩 Universal Plugin Interface
|
||
- 🔑 Fully Typed APIs
|
||
|
||
Vite (French word for "quick", pronounced [`/viːt/`](https://cdn.jsdelivr.net/gh/vitejs/vite@main/docs/public/vite.mp3), like "veet") is a build tool that aims to provide a faster and leaner development experience for modern web projects. It consists of two major parts:
|
||
|
||
- A dev server that provides [rich feature enhancements](https://vite.dev/guide/features) over [native ES modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules), for example extremely fast [Hot Module Replacement (HMR)](https://vite.dev/guide/features#hot-module-replacement).
|
||
|
||
- A build command that bundles your code with [Rolldown](https://rolldown.rs), pre-configured to output highly optimized static assets for production.
|
||
|
||
In addition, Vite is highly extensible via its [Plugin API](https://vite.dev/guide/api-plugin.html) and [JavaScript API](https://vite.dev/guide/api-javascript.html) with full typing support.
|
||
|
||
[Read the Docs to Learn More](https://vite.dev).
|