Copy static files over to the output directory.

This commit is contained in:
Tom Alexander
2023-12-23 15:45:23 -05:00
parent 397d4ea0bc
commit 138d694b27
3 changed files with 51 additions and 0 deletions

View File

@@ -88,4 +88,8 @@ impl Config {
.and_then(|stream| stream.entries_per_page)
.unwrap_or(5)
}
pub(crate) fn get_relative_path_to_static_files(&self) -> PathBuf {
Path::new("static").into()
}
}