Added a buildspec.yml

This commit is contained in:
Daisuke Nakahara 2025-04-30 20:08:58 +09:00
parent 4689250305
commit b4236490eb

17
buildspec.yml Normal file
View file

@ -0,0 +1,17 @@
version: 0.2
phases:
install:
runtime-versions:
nodejs: 22
commands:
- echo "Installing dependencies..."
- npm install
build:
commands:
- echo "Building the website..."
- npm run build
artifacts:
base-directory: ./dist
files:
- '**/*'