Change file without triggering a reload of Strapi

Just fyi, I had to put it to my /config/admin.js for it to work:

module.exports = ({ env }) => ({
  // some other variables are here
  watchIgnoreFiles: [
    './logs',
    '**/logs'
  ]
});
3 Likes