2023-11-02 21:29:14 +01:00

16 lines
378 B
Rust

use static_files::NpmBuild;
fn main() -> std::io::Result<()> {
if !cfg!(debug_assertions) {
NpmBuild::new("../ffplayout-frontend")
.install()?
.run("generate")?
.target("../ffplayout-frontend/.output/public")
.change_detection()
.to_resource_dir()
.build()
} else {
Ok(())
}
}