### Context When trying to implement the disable of the search following this: https://squidfunk.github.io/mkdocs-material/plugins/search/#config.enabled It does not work as described in documentation. ### Bug description I am trying yo disable the search, and I do not have any other plugins enabled. So I decided to use inside `mkdocs.yml`: ``` plugins: - search: enabled: false ``` When I try the `mkdocs serve` this error 404 is shown:  And search is still there as you can see in my following image. (Not only with mkdocs serve, also in Vercel deployment):  Nevertheless I found a trick to make it work, and it is to put an empty plugins in `mkdocs.yml`: ``` plugins: [] ``` ### Related links - [Plugin Search Enabled](https://squidfunk.github.io/mkdocs-material/plugins/search/#config.enabled) ### Reproduction [9.6.10-search-enabled-not-working.zip](https://github.com/user-attachments/files/19536730/9.6.10-search-enabled-not-working.zip) ### Steps to reproduce 1. try to disable search as explained above 2. mkdocs serve 3. the search is still there and error is shown in logging ### Browser Chrome ### Before submitting - [x] I have read and followed the [bug reporting guidelines](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/). - [x] I have attached links to [the documentation](https://squidfunk.github.io/mkdocs-material/), and possibly related [issues](https://github.com/squidfunk/mkdocs-material/issues) and [discussions](https://github.com/squidfunk/mkdocs-material/discussions). - [x] I assure that I have [removed all customizations](https://squidfunk.github.io/mkdocs-material/contributing/reporting-a-bug/#remove-customizations) before submitting this bug report. - [x] I have attached a __.zip file__ with a [minimal reproduction](https://squidfunk.github.io/mkdocs-material/guides/creating-a-reproduction/) using the [built-in info plugin](https://squidfunk.github.io/mkdocs-material/plugins/info/).