## Configuration --- ### 1\. Error `ENOSPC` occured when run `npm run dev:backend` on Ubuntu ::: alert-info Your project is large and contains many files, which is hitting the system’s file watchers limit. The limit can be increased to avoid the error See Also: * * ::: ## CMS --- ### 1\. Once installed, CMS plugins are automatically included. How to disable a plugin? ::: alert-info Set `enable: false` in `Site Configuration` or `Language Configuration`. For example, to disable the plugin `cms-plugintrack`, you can configure it as follows: ``` javascript { "host": { "url": "http://example.com", "rootPath": "" }, "language": { "default": "zh-cn", "items": "zh-cn,en-us" }, "themes": { "zh-cn": "cms-themeblog", "en-us": "cms-themeblog" }, "plugins": { "cms-plugintrack": { "enable": false, "track": { "google": "", "baidu": "", "qq": "" } } } } ``` :::