opnform-host-nginx/amplify.yml

21 lines
397 B
YAML
Raw Normal View History

2024-01-03 20:31:55 +01:00
version: 1
frontend:
phases:
preBuild:
commands:
- cd client
- npm ci
build:
commands:
2024-01-08 21:13:42 +01:00
- touch .env
- env | grep -e NUXT_LOG_LEVEL >> .env
2024-01-08 21:34:12 +01:00
- env | grep -e NUXT_PUBLIC_ >> .env
2024-01-03 20:31:55 +01:00
- npm run build
artifacts:
2024-01-03 20:42:39 +01:00
baseDirectory: client/.amplify-hosting
2024-01-03 20:31:55 +01:00
files:
- '**/*'
cache:
paths:
- client/node_modules/**/*