[Fixed]-CSS not loading on gcloud app engine?

1👍

Sadly, static handlers do not work on the flexible environment. You should just serve your CSS the way you normally would from your python application.

0👍

You can try this in your app.yaml

handlers:
- url: /static/style.css
  static_files: static/style.css
  upload: static/style.css

Leave a comment