This commit is contained in:
kamkow1
2025-06-20 00:24:40 +02:00
parent 4d2c12d2b1
commit 45b69de132
11 changed files with 749 additions and 11 deletions

2
main.c
View File

@ -88,7 +88,7 @@ void init_route_hashtable(void)
{
shdefault(route_hashtable, &route_page_not_found);
shput(route_hashtable, "/page-missing", &route_page_not_found);
shput(route_hashtable, "/simple.min.css", &route_simple_css);
shput(route_hashtable, "/simple.css", &route_simple_css);
shput(route_hashtable, "/favicon.ico", &route_favicon);
shput(route_hashtable, "/hotreload.js", &route_hotreload_js);
shput(route_hashtable, "/", &route_home);