You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fs::create_dir_all(dist).expect("failed to create web/dist fallback directory");
fs::write(
dist.join("index.html"),
r#"<!doctype html><html><head><meta charset="utf-8"><title>DiffScope</title></head><body>Frontend not built. Run npm run build in web/ for the full UI.</body></html>"#,
)
.expect("failed to write web/dist fallback index.html");