-
-
Couldn't load subscription status.
- Fork 2.5k
Open
Labels
Description
Discussed in #4799
Originally posted by ISOR3X June 21, 2025
Hi, it's me again.
I have the following glob that should watch my python files for changes: ../src/**/*.py
My project is structured as follows:
docs/ ├── .vitepress/ │ ├── cache/ │ ├── theme/ │ └── config.mts ├── components/ │ └── APIDoc.vue ├── api-examples.md ├── index.md ├── markdown-examples.md ├── python.data.ts <-- the data loader └── python-api.md src/ └── auto_docs/ └── module1/ ├── __init__.py ├── functions1.py ├── __init__.py └── py.typed When I updated a vitepress file the watch does get triggered and it does show that the python files are being watched. However when I update a python file and save it the watch is not being triggered. What is causing this?