Add a message to know if the server is running or not.
[valheim_web.git] / backend / build.rs
index 8837cfc..0d6baba 100644 (file)
@@ -26,6 +26,11 @@ fn main() {
             .expect("Unable to compile SASS file, install SASS, see https://sass-lang.com/")
     }
 
+    // Create static directory if it doesn't exist.
+    if !Path::new("static").exists() {
+        std::fs::create_dir("static");
+    }
+
     let output =
         if exists_in_path("sass.bat") {
             run_sass(Command::new("cmd").args(&["/C", "sass.bat"]))