vite-static 0.4.0

Embed Vite chunks into your Rust application and query them individually.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(docsrs, doc(auto_cfg))]
#![warn(clippy::pedantic)]

#[cfg(feature = "derive")]
pub use vite_static_derive::Manifest;

#[cfg(feature = "actix-web")]
pub use vite_static_actix_web::*;

#[cfg(feature = "html")]
pub use vite_static_html::*;

pub use vite_static_shared::*;