app.yaml: Try to serve static CSS directly

Google App Engine is currently caching an old version of my CSS, so
I am trying to get it to use the correct version. Let's try serving
it directly from the filesystem.

See: https://cloud.google.com/appengine/docs/standard/php/getting-started/serving-static-files
This commit is contained in:
Alan Orth 2021-03-14 10:36:57 +02:00
parent a2ace2d331
commit 25aa74ba14
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 4 additions and 0 deletions

View File

@ -1,2 +1,6 @@
runtime: python39
entrypoint: gunicorn -b :$PORT main:app
handlers:
- url: /static/css
static_dir: static/css