diff --git a/frontend/buildspec.yml b/frontend/buildspec.yml new file mode 100644 index 00000000..f6bf45fa --- /dev/null +++ b/frontend/buildspec.yml @@ -0,0 +1,16 @@ +phases: + install: + commands: + - echo Installing dependencies... + - cd frontend + - npm install + build: + commands: + - echo Building the project... + - npm run build + +artifacts: + files: + - '**/*' + base-directory: frontend/dist + name: techcourse-project-2024/develup/frontend-deploy