Change the default font + other little things
[recipes.git] / backend / build.rs
1 use std::process::Command;
2
3 fn main() {
4 println!("cargo:rerun-if-changed=style.scss");
5
6 Command::new("sass")
7 .arg("./style.scss")
8 .arg("./static/style.css")
9 .output()
10 .expect("Unable to compile SASS file, install SASS, see https://sass-lang.com/");
11 }