【.slugignoreで不要なファイルを無視する】

.slugignoreファイルをプロジェクトルートに追加し、
こちらのファイルにslugコンパイラに無視してほしいファイルを記述します。

*.psd
*.pdf
/spec

【heroku-repoプラグインでGitのキャッシュを削除する】

Gitレポジトリに残っているキャッシュを消すことでslugサイズを減らすことが出来ます。

# プラグインインストール
heroku plugins:install heroku-repo

heroku repo:gc --app <アプリ名>
heroku repo:purge_cache --app <アプリ名>

参考

https://help.heroku.com/KUFMEES1/my-slug-size-is-too-large-how-can-i-make-it-smaller#:~:text=You should try to keep,application%2C such as static assets.

https://thoughtbot.com/blog/how-to-reduce-a-large-heroku-compiled-slug-size