We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27d9dfa commit bb7f1d0Copy full SHA for bb7f1d0
src/web/routes.rs
@@ -10,7 +10,7 @@ pub(super) fn build_routes() -> Routes {
10
let mut routes = Routes::new();
11
12
routes.static_resource("/style.css", super::style_css_handler);
13
- routes.static_resource("/index.js", |_: &mut Request| super::load_js(IDEX_JS));
+ routes.static_resource("/index.js", |_: &mut Request| super::load_js(INDEX_JS));
14
routes.static_resource("/menu.js", |_: &mut Request| super::load_js(MENU_JS));
15
routes.static_resource("/robots.txt", super::sitemap::robots_txt_handler);
16
routes.static_resource("/sitemap.xml", super::sitemap::sitemap_handler);
0 commit comments