macro_rules! include_tailwind {
($($v:tt)*) => { ... };
}
Expand description
includes the generated tailwind file wrapped that it can directly be used by
the supported web frameworks as a response
(the Stylesheet
Type implements the corosponding trait if the feature is enabled)
see the include_tailwind_raw
docs for the possible arguments
// axum request handler as example
async fn style_css() -> include_tailwind::Stylesheet { include_tailwind!() }