I try to add frontend (angular) in my backend project to deploy it on GCP.
When I try in local with: mvn appengine:run no problem, but when I want to deploy it with mvn package appengine:deploy I get this error:
ERROR: (gcloud.app.deploy) Cannot upload file [/Users/.../project/target/appengine-staging/static/front/node/node], which has size [41783856] (greater than maximum allowed size of [33554432]). Please delete the file or add to the skip_files entry in your application .yaml file and try again.
I didn't have a file: app.yaml.
I try to add .gcloudignore file but didn't work.
I don't know what I can do to fix this issue.