diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-11 20:49:39 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-11 20:49:39 +0100 |
commit | 0f944c90380b28e010211f3c8d57423e38bb2c11 (patch) | |
tree | e8b674763e4b3210efc7bd26eadd34eff90b0389 /server/src/main.rs | |
parent | 0737008c5c649f0ce33719fb9126b284d76c9807 (diff) | |
download | jellything-0f944c90380b28e010211f3c8d57423e38bb2c11.tar jellything-0f944c90380b28e010211f3c8d57423e38bb2c11.tar.bz2 jellything-0f944c90380b28e010211f3c8d57423e38bb2c11.tar.zst |
tool for generating metadata
Diffstat (limited to 'server/src/main.rs')
-rw-r--r-- | server/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/main.rs b/server/src/main.rs index 855e278..36571f0 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -16,7 +16,7 @@ async fn assets_style() -> (ContentType, String) { ( ContentType::CSS, if cfg!(debug_assertions) { - read_to_string("src/frontend/style/layout.css").unwrap() + read_to_string("server/src/frontend/style/layout.css").unwrap() } else { CSS_BUNDLE.to_string() }, |