pagetop/build.rs
2024-02-09 14:05:38 +01:00

7 lines
169 B
Rust

use pagetop_build::StaticFilesBundle;
fn main() -> std::io::Result<()> {
StaticFilesBundle::from_dir("./static/base")
.with_name("base")
.build()
}