n-daisuke897-blog/buildspec.yml
2025-05-08 20:48:24 +09:00

15 lines
251 B
YAML

version: 0.2
phases:
install:
commands:
- echo "Installing dependencies..."
- npm install
build:
commands:
- echo "Building the website..."
- npm run build
artifacts:
base-directory: ./dist
files:
- '**/*'