dioxus_static_site_generation/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![allow(non_snake_case)]
#![doc(html_logo_url = "https://avatars.githubusercontent.com/u/79236386")]
#![doc(html_favicon_url = "https://avatars.githubusercontent.com/u/79236386")]
#![deny(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg))]
//! Static generation for Dioxus

mod config;
pub use config::*;
pub mod launch;

#[cfg(feature = "server")]
pub(crate) mod ssg;

/// A prelude of commonly used items in static generation apps.
pub mod prelude {
    pub use dioxus_fullstack::prelude::*;
}

/// A document provider for static generation apps
pub mod document {
    pub use dioxus_fullstack::document::*;
}