How to create continuous deployment pipeline for quasar app in under 5 minutes using aws-amplify
-
Hello Friends, the following is link to the video tutorial from our weekly web series building production web application. Please do not forget to provide feedback on this Web series
https://www.youtube.com/watch?v=eBKCyxOipGI&list=PLAl8os33KyOVpzfYznpguV_5euzKJ626V&index=5
-
Hi,
I’ve followed the tutorial but i’m getting a build error related to the build settings: Quasar command not found.
I’m not sure what i’ve missed.These are the build settings:
version: 1
backend:
phases:
build:
commands:
- amplifyPush --simple
frontend:
phases:
preBuild:
commands:
- npm install -g @quasar/cli
- npm cibuild: commands: - quasar build
artifacts:
baseDirectory: dist/spa
files:
- '/*’
cache:
paths:
- node_modules//*