First query on here.
I'm trying to deploy a Laravel 6 app on Google App Engine Standard. I'm following this guide: https://cloud.google.com/community/tutorials/run-laravel-on-appengine-standard
The app would not deploy due to there being over 10,000 files. I used gcloudignore to ignore the node modules and the app does deploy fine. However, this does make the app act differently as these dependencies are not available.
Is there a way to add the node modules after deployment? Or are there some modules I can ignore in particular that come with Laravel?
Thanks in advance!