Why is not ignoring the folders?

this is my .stignore

(?d) node_modules
(?d) dist

Im a web developer so most of my files have both of this folders but they are not needed to be sync they are being sync to all devices and the .stignore is the same on all of them

In the patterns above, Syncthing will be looking for directories named " node_modules" and " dist" (starting with a space). Just need to remove the extraneous space between the (?d) prefix and string pattern being matched:

(?d)node_modules
(?d)dist
3 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.