Skip to content

Commit 8e60653

Browse files
authored
more env (#1195)
1 parent 22f6e41 commit 8e60653

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pgml-dashboard/src/utils/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ impl Config {
4949
_ => "2.0K".to_string(),
5050
};
5151

52-
let css_version = env_string_default("CSS_VERSION", "");
53-
let js_version = env_string_default("JS_VERSION", "1");
52+
let css_version = env!("CSS_VERSION");
53+
let js_version = env!("JS_VERSION");
5454

5555
let css_extension = if dev_mode {
5656
"css".to_string()

0 commit comments

Comments
 (0)