in-vite 0.1.4

Vite integration for your Rust backend.
Documentation
1
2
3
4
5
6
7
8
9
10
//! This module implements the necessary types and function required to
//! integrate Vite into Rust backend projects.

mod error;
mod integrations;
mod manifest;
mod resource;
mod vite;

pub use vite::{Vite, ViteMode, ViteOptions, ViteReactRefresh};