steid

@jamesgill /

steid/build.rs
338 BCode·Blame·Raw
1//! Runs Tailwind over `styles.css`.
2//!
3//! Topcoat wraps the standalone Tailwind CLI — no Node, no PostCSS. The generated CSS
4//! lands in `OUT_DIR` and is served by the asset bundler with a content-hashed URL.
5
6fn main() {
7 topcoat::tailwind::BuildConfig::new()
8 .input("styles.css")
9 .render()
10 .unwrap();
11}