v0.4.8 - Implement web server functionality for embedded admin interface - serve HTML/CSS/JS from /api/ endpoint with proper MIME types, CORS headers, and performance optimizations

This commit is contained in:
Your Name
2025-10-04 12:45:35 -04:00
parent 36c9c84047
commit 64b418a551
28 changed files with 10635 additions and 4289 deletions

View File

@@ -0,0 +1,19 @@
// Auto-generated embedded web content header
// Do not edit manually - generated by embed_web_files.sh
#ifndef EMBEDDED_WEB_CONTENT_H
#define EMBEDDED_WEB_CONTENT_H
#include <stddef.h>
// Embedded file lookup function
typedef struct {
const char *path;
const unsigned char *data;
size_t size;
const char *content_type;
} embedded_file_t;
embedded_file_t *get_embedded_file(const char *path);
#endif // EMBEDDED_WEB_CONTENT_H