在 Google App Engine 上部署 create-react-app

IT技术 node.js reactjs google-app-engine google-cloud-platform create-react-app
2021-04-08 13:38:34

我正在尝试部署我在 Google App Engine 上使用create-react-app 创建的应用程序。

我的应用程序在本地(npm startnpm run build & serve -s build上运行良好但是,在 Google App Engine 上部署的应用程序仅显示 index.html,并没有调用我的react代码。

Chrome 开发者控制台显示Uncaught SyntaxError: Unexpected token <.

此外,我在 console.cloud.google.com 上发现部署的应用程序不包含构建文件夹。这个对吗?

任何人都可以解决这个问题?

这是我的 package.json:

{
  "name": "XXXXX",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "react": "^16.8.2",
    "react-dom": "^16.8.2",
    "react-ga": "^2.5.7",
    "react-router-dom": "^4.3.1",
    "react-scripts": "2.1.5"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
 },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": [
    ">0.2%",
    "not dead",
    "not ie <= 11",
    "not op_mini all"
  ]
}

另外,这是我的 app.yaml。

runtime: nodejs10

handlers:
- url: /.*
  static_files: build/index.html
  upload: build/index.html
- url: /
  static_dir: build
2个回答

结果在网上搜索了很多次,发现是我react app的路由系统造成的。

正如这篇文章所述,我们需要小心编写 app.yaml。如果我们首先编写以下项目,GAE 将返回build/index.html所有查询,包括对/static/js和 的访问/static/css

- url: /
  static_files: build/index.html
  upload: build/index.html

create-react-appnpm run build.创建一个构建文件夹和静态子文件夹因此,我必须像这样更具体地编写我的 app.yaml:

handlers:
  - url: /static/js/(.*)
    static_files: build/static/js/\1
    upload: build/static/js/(.*)
  - url: /static/css/(.*)
    static_files: build/static/css/\1
    upload: build/static/css/(.*)
  - url: /static/media/(.*)
    static_files: build/static/media/\1
    upload: build/static/media/(.*)
  - url: /(.*\.(json|ico))$
    static_files: build/\1
    upload: build/.*\.(json|ico)$
  - url: /
    static_files: build/index.html
    upload: build/index.html
  - url: /.*
    static_files: build/index.html
    upload: build/index.html
请编辑答案,放置完整的 app.yaml。你在运行时放了什么?
2021-06-16 13:38:34

你能检查一下这个文件吗 - https://medium.com/tech-tajawal/deploying-react-app-to-google-app-engine-a6ea0d5af132

这会帮助你。我已经使用相同的步骤部署了我的应用程序。

示例 yaml 文件

    runtime: python27
    api_version: 1
    threadsafe: true
    handlers:
    - url: /
      static_files: build/index.html
      upload: build/index.html
    - url: /
      static_dir: build

参考链接 - https://medium.com/google-cloud/how-to-deploy-a-static-react-site-to-google-cloud-platform-55ff0bd0f509

谢谢!

不不应该
2021-05-24 13:38:34
还尝试上传所有 node_modules 吗?
2021-05-30 13:38:34
@Daisuke SHIBATO - 添加了 .yaml 文件和参考链接以使事情变得清晰。
2021-06-02 13:38:34
很高兴你的问题得到了解决。如果此答案对您有帮助,请接受此答案,以便其他有类似问题的人也能找到此答案。
2021-06-06 13:38:34
嗨,Harsh,感谢您的评论。我发现这个问题的原因是我在 GAE 上对 react 应用程序的路由。
2021-06-21 13:38:34