website-htmx-rustelo-code/crates/pages_htmx/build.rs
2026-07-10 03:44:13 +01:00

10 lines
267 B
Rust

use std::path::Path;
fn main() {
let templates = Path::new(env!("CARGO_MANIFEST_DIR")).join("templates");
println!(
"cargo:rustc-env=JPL_PAGES_HTMX_TEMPLATES={}",
templates.display()
);
println!("cargo:rerun-if-changed=templates");
}