繁体   English   中英

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

[英]Deploy create-react-app on Google App Engine

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

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

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

结果在网上搜索了很多次,发现是我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创建一个 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

你能检查一下这个文件吗 - 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

谢谢!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM