From b4236490ebcfef786437a6e81ea0148454fe5169 Mon Sep 17 00:00:00 2001 From: Daisuke Date: Wed, 30 Apr 2025 20:08:58 +0900 Subject: [PATCH] Added a `buildspec.yml` --- buildspec.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 buildspec.yml diff --git a/buildspec.yml b/buildspec.yml new file mode 100644 index 0000000..2a64832 --- /dev/null +++ b/buildspec.yml @@ -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: + - '**/*'