Search code examples
javascriptmultithreadingmeteor

Turn off file watching in Meteor


I am building an app that stores user generated images. These images get used throughout the app in a gallery type view. They also update/regenerate frequently.

The problem I am having is when a new image gets generated, I am storing it in the public directory. This causes the meteor server to "restart".

Is there a way to turn off file watching?


Solution

  • I ended up exporting the file to an S3 bucket so that it didn't effect the Meteor watching.