Adapter for SvelteKit apps to Amplify Host CI/CD.
Este paquete se creó para adaptar el paquete @sveltejs/node-adapter para su uso con CI/CD en AWS Amplify + SSR. Este paquete incluye los siguientes cambios:
Limitations:
- Artifacts size limit: 200 MB
https://docs.aws.amazon.com/amplify/latest/userguide/get-started-sveltekit.html
- Install with npm, pnpm or yarn:
npm install --save-dev amplify-adapter
- Add the adapter to your
svelte.config.js
:
// svelte.config.js
import adapter from 'amplify-adapter';
- Create a new app in Amplify Console, choose your git provider and click
Next
.
- Select your repository and branch, and click
Next
.
- Click
Edit YML
button:
- Set Artifact base directory to
build
and add the following lines tofrontend -> build
phase:
- cd build/compute/default/
- npm i --omit=dev
version: 1
frontend:
phases:
preBuild:
commands:
- 'npm i'
build:
commands:
- 'npm run build'
- 'cd build/compute/default/'
- 'npm i --omit=dev'
artifacts:
baseDirectory: build
files:
- '**/*'
cache:
paths:
- node_modules/**/*
- Click
Next
toReview
your app configuration and clickSave and Deploy
.