cotestatnt / esp-fs-webserver

ESP32/ESP8266 webserver, WiFi manager and web editor Arduino library
MIT License
105 stars 27 forks source link

Minify procedure producing erroneous header #52

Open yconst opened 1 month ago

yconst commented 1 month ago

The minify procedure described here generates the following erroneous header:

#define SETUP_HTML_SIZE xxxx
static const unsigned char SETUP_HTML[] PROGMEM = {
...

whereas it should be:

#define SETUP_HTML_SIZE xxxx
static const unsigned char _acsetup_min_htm[] PROGMEM = {
...
cotestatnt commented 1 month ago

Yes you are right. I will correct the script as soon as I can