steid
Sign in
@jamesgill
/
steid
Code
Commits
c5b3ff5
At commit c5b3ff5
Branches
main
steid
/
build.rs
338 B
Code
·
Blame
·
Raw
af126c7
feat: tailwind theme and the first components
25d
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
}