Beam

Vite Integration

One-line integration for Vite projects (React, Vue, Svelte, etc.)

Installation

Terminal
npm install @byronwade/beam @byronwade/beam-vite --save-dev

Configuration

Add the plugin to your vite.config.ts:

vite.config.ts
1
2
3
4
5
6
7
8
9
10
import { defineConfig } from 'vite';
import { beam } from '@byronwade/beam-vite';
export default defineConfig({
plugins: [
beam({
silent: false // optional
})
]
});

Development

Start your dev server:

Terminal
npm run dev

Beam will automatically tunnel the Vite dev server port (default 5173).

Support & Community

Report Issues
Found a bug or have a feature request?

Open an issue on our GitHub repository to get help from the team and community.

Open GitHub Issue
Documentation
Help us improve our guides.

This documentation is open source. Feel free to contribute updates or fixes.

Edit on GitHub