Added a buildspec.yml
This commit is contained in:
parent
4689250305
commit
b4236490eb
1 changed files with 17 additions and 0 deletions
17
buildspec.yml
Normal file
17
buildspec.yml
Normal 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:
|
||||||
|
- '**/*'
|
||||||
Loading…
Add table
Add a link
Reference in a new issue