I am facing an issue with the nuxt ignore feature as I am trying to exclude certain folders from being monitored, specifically during development. Despite my efforts in researching solutions online, none of them have proven to be effective.
This is what my .nuxtignore
file looks like:
.idea/
In addition, I have configured the ignore property in my nuxt.config.js
:
ignore: [
'**/*.test.*',
'node_modules/*',
'**/.idea/*',
'**/.nuxt/*',
'**/.*ignore',
],
Even after attempting different combinations of configurations, such as using .idea/*
in both files, I still encounter issues. The console output I receive is similar to this:
↻ Updated .idea/workspace.xml 16:36:04
✔ Client
Compiled successfully in 7.20s
No issues found.
Is there something that I might be overlooking here?