We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
frontend/dist
1 parent 661f613 commit 8055e85Copy full SHA for 8055e85
1 file changed
frontend/src-tauri/build.rs
@@ -1,3 +1,8 @@
1
+use std::{fs, path::PathBuf};
2
+
3
fn main() {
4
+ // Directory required for compilation, but not tracked by git if empty.
5
+ let dist_dir: PathBuf = ["..", "dist"].iter().collect();
6
+ fs::create_dir_all(dist_dir).unwrap();
7
tauri_build::build()
8
}
0 commit comments