Skip to content Skip to sidebar Skip to footer

CSS Files Not Working On Localhost

The problem is just happening on localhost, when I upload the application to AppEngine, It succesfully finds the css files. I'm using python 2.7, the app is done on webapp2 and I'm

Solution 1:

For PIL, add this to the libraries section of app.yaml:

- name: PIL
  version: latest

To diagnose the 500 error in your css request, try adding this:

- url: /static/css
  static_dir: static/css
  mime_type = "text/css"

(This needs to be ABOVE your - url /static call, so it runs first


Post a Comment for "CSS Files Not Working On Localhost"