Skip to content

Commit

Permalink
[docs] add watchIgnoreFiles demo (#2312)
Browse files Browse the repository at this point in the history
  • Loading branch information
declandragon authored Dec 10, 2024
1 parent 7e64e19 commit 782d740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docusaurus/docs/dev-docs/configurations/admin-panel.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The `./config/admin.js` file can include the following parameters:
| `auth.events.onConnectionError` | Function called when an admin user fails to log in to the administration panel | function | `undefined` |
| `url` | Url of your admin panel. Default value: `/admin`. Note: If the url is relative, it will be concatenated with `url`. | string | `/admin` |
| `autoOpen` | Enable or disable administration opening on start. | boolean | `true` |
| `watchIgnoreFiles` | Add custom files that should not be watched during development. See more [here](https://github.com/paulmillr/chokidar#path-filtering) (property `ignored`). | array(string) | `[]` |
| `watchIgnoreFiles` | Add custom files that should not be watched during development. See more [here](https://github.com/paulmillr/chokidar#path-filtering) (property `ignored`). | array(string) | `[]`. Example: root path `local/data/mysql-data`, configured as `['**/mysql-data/**']` |
| `host` | Use a different host for the admin panel. | string | `localhost` |
| `port` | Use a different port for the admin panel. | string | `8000` |
| `serveAdminPanel` | If false, the admin panel won't be served. Note: the `index.html` will still be served | boolean | `true` |
Expand Down

0 comments on commit 782d740

Please sign in to comment.