Have tried the index_exclude_patterns
setting, but it still appears to be trying to index node_modules.
I’m getting the following in the console:
worker 9092 appears stuck while processing file /C/inetpub/wwwroot/xxx/app/webroot/bootstrap-3.3.6/node_modules/acorn-globals/README.md, killing process
worker 5388 appears stuck while processing file /C/inetpub/wwwroot/xxx/app/webroot/bootstrap-3.3.6/node_modules/argparse/node_modules/underscore.string/README.markdown, killing process
worker 9092 appears stuck while processing file /C/inetpub/wwwroot/xxx/app/webroot/bootstrap-3.3.6/node_modules/acorn-globals/README.md, killing process
Edit: Don’t know why it was stuck on those two files. But it looped over those two files trying to read them indefinitely.
so I added "*.md", "*.markdown"
to the index_exclude_patterns
. Ugly solution but has got me beyond 7%.