This React website is served on Google Cloud Platform
I want to edit an existing handler
- url: /(.*)$
static_files: public/\1/index.html
upload: public/.*/index.html
to get rid of warnings like this Static file referenced by handler not found: public/_ah/start/index.html
I have seen this solution, but I'm not quite sure how to use it in my case. Any ideas? I tried option below, but it didn't work, build fails.
- url: /(?!.*\/_ah).*$
static_files: public/\1/index.html
upload: public/.*/index.html