I have a problem with nuxt ignore to exclude some folders from being watched especially during development. I have searched the internet and the solutions don't seem to work for me.
My .nuxtignore
file
.idea/
And the ignore property in nuxt.config.js
ignore: [
'**/*.test.*',
'node_modules/*',
'**/.idea/*',
'**/.nuxt/*',
'**/.*ignore',
],
I have also tried using the options independently, initially tried .idea/*
in both files, still doesn't work, I get output like this in console:
↻ Updated .idea/workspace.xml 16:36:04
✔ Client
Compiled successfully in 7.20s
No issues found.
Is there anything am missing here?