- updated build configs;

This commit is contained in:
Vitalii Kiiko
2026-03-27 12:09:25 +01:00
parent d043356411
commit f3b290dc1a
2 changed files with 8 additions and 4 deletions

View File

@@ -3,10 +3,12 @@ version: 0.2
phases: phases:
install: install:
runtime-versions: runtime-versions:
nodejs: 20 nodejs: 20
commands:
- npm ci
build: build:
commands: commands:
- npm install && npm run build:dev - npm run build:dev
artifacts: artifacts:
files: files:
- '**/*' - '**/*'

View File

@@ -4,10 +4,12 @@ phases:
install: install:
runtime-versions: runtime-versions:
nodejs: 20 nodejs: 20
commands:
- npm ci
build: build:
commands: commands:
- npm install && npm run build:prod - npm run build:prod
artifacts: artifacts:
files: files:
- '**/*' - '**/*'
base-directory: 'build' base-directory: 'build'