在 google 云上部署 VueJS

Deploying VueJS on google cloud

我正在使用 Vue CLI 3 创建具有以下预设的 Web 应用程序:babel、PWA、Vue Router 和 css 处理器。我正在尝试在 Google Cloud 的 App Engine 上部署应用程序。我该如何服务? Google 上的教程说我只需要做:

gcloud app deploy

在根目录下,但是不知道怎么配置app.yaml部署dist/文件夹

您是否尝试过使用 Cloud Build 将 Vue.js 应用程序部署到 Google App Engine?我以这种方式部署任何 Vue.js 应用程序都没有问题。尝试按照 complete instructions.

的教程进行操作

基本上,在通过 Cloud Build 将 Vue.js 应用程序部署到 Google App Engine 时,您必须在项目根目录中包含以下两个文件:

  1. App.yaml

runtime: nodejs10
handlers:
  # Serve all static files with urls ending with a file extension
- url: /(.*\..+)$ 
  static_files: dist/
  upload: dist/(.*\..+)$
  # catch all handler to index.html
- url: /.*
  static_files: dist/index.html
  upload: dist/index.html

  1. cloudbuild.yaml

steps:
- name: node:10.15.1
  entrypoint: npm
  args: ["install"]
- name: node:10.15.1
  entrypoint: npm
  args: ["run", "build"]
- name: "gcr.io/cloud-builders/gcloud"
  args: ["app", "deploy"]
timeout: "1600s"

如果您不使用云构建,您可以只参考上面的 app.yaml,配置应该足以满足您的情况。