From d88e438679d60a15751d0c15dee438d2d96fc135 Mon Sep 17 00:00:00 2001 From: "Sergio R. Caprile" Date: Tue, 2 Aug 2022 16:06:19 -0300 Subject: [PATCH] default to using packed fs, otherwise hw examples won't work --- examples/device-dashboard/net.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/device-dashboard/net.c b/examples/device-dashboard/net.c index 531025d4..0b0ddd76 100644 --- a/examples/device-dashboard/net.c +++ b/examples/device-dashboard/net.c @@ -169,7 +169,7 @@ void device_dashboard_fn(struct mg_connection *c, int ev, void *ev_data, u->token); } else { struct mg_http_serve_opts opts = {0}; -#if 0 +#if 1 opts.root_dir = "/web_root"; opts.fs = &mg_fs_packed; #else