使用aws放大部署nuxt应用程序时发生重定向错误

问题描述 投票:0回答:1

[当我尝试部署应用程序时,构建完成而没有错误。当我转到提供的链接(https://master.d3m2wky0hslwhr.amplifyapp.com/)时,我得到ERR_TOO_MANY_REDIRECTS。

我的构建配置:

version: 1
frontend:
  phases:
    preBuild:
      commands:
        - npm ci
    build:
      commands:
        - npm run build
  artifacts:
    # IMPORTANT - Please verify your build output directory
    baseDirectory: .nuxt
    files:
      - '**/*'
  cache:
    paths:
      - node_modules/**/*

在我拥有的应用程序内部(index.vue,login.vue和register.vue)

[我认为这可能是因为即时通讯被重定向到url / index.html而该文件在proyect中不存在。

amazon-web-services nuxt.js aws-amplify
1个回答
0
投票

已解决。

将-npm run build更改为-npm run generate(这将默认创建index.html并将所有内容转换为静态)将baseDirectory更改为dist

© www.soinside.com 2019 - 2024. All rights reserved.