Cronjob in Production

Hi everyone, i did NODE_ENV=production yarn build ->now the cronjob doesn’t work anymore. Any hint why this only happens in production mode?

Hey @mikeriss :wave:,

Running yarn build does not start your strapi application so cron jobs will not get triggerd. To start your application run NODE_ENV=production yarn start after you have build it with NODE_ENV=production yarn build.