mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-25 01:41:43 +00:00
23 lines
797 B
Plaintext
23 lines
797 B
Plaintext
menu "Example Configuration"
|
|
|
|
config EXAMPLE_MDNS_HOST_NAME
|
|
string "mDNS Host Name"
|
|
default "dashboard"
|
|
help
|
|
Specify the domain name used in the mDNS service.
|
|
Note that webpage also take it as a part of URL where it will send GET/POST requests to.
|
|
|
|
config EXAMPLE_WEB_MOUNT_POINT
|
|
string "Website mount point in VFS"
|
|
default "/www"
|
|
help
|
|
Specify the mount point in VFS.
|
|
|
|
config EXAMPLE_DEPLOY_WEB_PAGES
|
|
bool "Deploy web pages to device's filesystem"
|
|
default n
|
|
help
|
|
If enabled, the example will deploy web pages to the device's filesystem.
|
|
Ensure that the necessary files (html, css, js, etc.) are available in the `front/web-demo/dist` directory.
|
|
endmenu
|