You can add !path/to/folder
to your .cursorignore
to make sure the folder gets included even if it’s ignored by gitignore. Note that you may need to add !path/to/folder/*
or !path/to/folder/**/*
(see this SO answer for more details).
You can add !path/to/folder
to your .cursorignore
to make sure the folder gets included even if it’s ignored by gitignore. Note that you may need to add !path/to/folder/*
or !path/to/folder/**/*
(see this SO answer for more details).