Closed andyw8 closed 1 year ago
By default, a new Rails 7 app will create:
vendor/.keep vendor/javascript/.keep
.gitignore has a /vendor entry (since #596) which prevents these from being committed.
.gitignore
/vendor
The second path is referenced in app/assets/config/manifest.js. When that path doesn't exist, deploys will fail with:
app/assets/config/manifest.js
Sprockets::ArgumentError: link_tree argument must be a directory /[...]/releases/20220430191140/app/assets/config/manifest.js:4
By default, a new Rails 7 app will create:
.gitignore
has a/vendor
entry (since #596) which prevents these from being committed.The second path is referenced in
app/assets/config/manifest.js
. When that path doesn't exist, deploys will fail with: