A
Reported
Hello cleanPublicFolder.js is non-existent. Where should I get that to run the full npm run:prod command?
- MSAnsweredHello,
I will check for the file. For now you can create it with these contents
```
const rimraf = require('rimraf');
rimraf.sync('./public/js');
rimraf.sync('./public/mix-manifest.json');
```
Thank you - Login to Reply