CSS File Not Updating on Deploy (Google AppEngine)

后端 未结 12 1899
既然无缘
既然无缘 2020-12-09 03:39

I pushed a new version of my website, but now the CSS and static images are not deploying properly.

Here is the messed up page: http://www.gaiagps.com

Appeng

12条回答
  •  悲哀的现实
    2020-12-09 04:06

    Make sure to add wildcard at the end of the url and service setup on dispatch.yaml file.

    Example:

    dispatch:
      - url: "example.com/*"
        service: default
    
      - url: "sub.example.com/*"
        service: subexample
    

提交回复
热议问题