1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-09 06:42:20 +01:00

web_server: Add support for v3 local server_index (#6563)

This commit is contained in:
Peter Zich
2024-04-29 12:24:13 -07:00
committed by GitHub
parent 73bb4aa4d5
commit 47c262832b
4 changed files with 4633 additions and 606 deletions

View File

@@ -27,7 +27,11 @@
#endif
#ifdef USE_WEBSERVER_LOCAL
#include "server_index.h"
#if USE_WEBSERVER_VERSION == 2
#include "server_index_v2.h"
#elif USE_WEBSERVER_VERSION == 3
#include "server_index_v3.h"
#endif
#endif
namespace esphome {