Build a frontend using Vite and Bun
You can use Vite with Bun, but many projects get faster builds & drop hundreds of dependencies by switching to HTML imports.
Vite works with Bun with no extra configuration. Get started with one of Vite's templates.
terminal
bun create vite my-app◇ Select a framework:
│ React
│
◇ Select a variant:
│ TypeScript
│
◇ Which linter to use?
│ Oxlint
│
◇ Install with bun and start now?
│ No
│
◇ Scaffolding project in /path/to/my-app...Then cd into the project directory and install dependencies.
terminal
cd my-app
bun installStart the development server with the vite CLI using bunx.
The --bun flag tells Bun to run Vite's CLI using bun instead of node. By default, Bun respects Vite's #!/usr/bin/env node shebang line.
terminal
bunx --bun viteTo simplify this command, update the "dev" script in package.json to the following.
package.json
"scripts": {
"dev": "vite",
"dev": "bunx --bun vite",
"build": "tsc -b && vite build",
"lint": "oxlint",
"preview": "vite preview"
},
// ...Now you can start the development server with bun run dev.
terminal
bun run devBuild your app for production.
terminal
bunx --bun vite buildFor more information, see the Vite documentation.