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.
1 parent 22f6e41 commit 8e60653Copy full SHA for 8e60653
pgml-dashboard/src/utils/config.rs
@@ -49,8 +49,8 @@ impl Config {
49
_ => "2.0K".to_string(),
50
};
51
52
- let css_version = env_string_default("CSS_VERSION", "");
53
- let js_version = env_string_default("JS_VERSION", "1");
+ let css_version = env!("CSS_VERSION");
+ let js_version = env!("JS_VERSION");
54
55
let css_extension = if dev_mode {
56
"css".to_string()
0 commit comments