steid
Sign in
@jamesgill
/
steid
Code
Commits
11e7a39
At commit 11e7a39
Branches
main
steid
/
build.rs
338 B
Code
·
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
6
fn
main
(
)
{
7
topcoat
::
tailwind
::
BuildConfig
::
new
(
)
8
.
input
(
"
styles.css
"
)
9
.
render
(
)
10
.
unwrap
(
)
;
11
}