文件不希望被解析(app.yaml Google Cloud Platoform-App Engine上下文)

时间:2019-03-14 13:50:47

标签: google-app-engine google-cloud-platform yaml

我想添加一个http标头访问控制允许源使我的应用程序与CORS兼容。我是在app.yaml文件中完成的,但是当我尝试部署服务器时,它使我产生了解析错误。

  

解析文件时发生错误

这是我的app.yaml

runtime: nodejs
env: flex

skip_files:
  - ^node_modules$

handlers:
  - url: /generate
    http_headers:
      Access-Control-Allow-Origin: http:/localhost:3000

请问有人有想法吗?我认为我尊重缩进。

谢谢:)

1 个答案:

答案 0 :(得分:3)

为避免解析错误,您需要添加directory of the shared resources

handlers:
- url: /generate
  static_dir: static/whatever
  http_headers:
    Access-Control-Allow-Origin: http://localhost:3000