in-vite 0.1.3

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

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

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