在开发过程中,一切正常,应用程序有.env.local文件,安装到amazon amplify后,应用程序看不到变量,我在环境变量中添加了我的键和值,我也试图将它们添加到控制台中,但随后应用程序中断
version: 1
frontend:
phases:
preBuild:
commands:
- npm ci
build:
commands:
- EMAIL=${EMAIL}
- EMAIL_PASS=${EMAIL_PASS}
- NEXT_PUBLIC_GOOGLE_ANALYTICS=${NEXT_PUBLIC_GOOGLE_ANALYTICS}
- npm run build
artifacts:
baseDirectory: .next
files:
- '**/*'
cache:
paths:
- node_modules/**/*
1条答案
按热度按时间carvr3hs1#
这是用来组织
yml
文件的documentation,如你所见,env
在顶部,后面是variables
。