Deploying Enterprise-Ready Vue.js 3
In the previous chapter, we explored everything related to end-to-end (e2e) testing. We learned in depth how to perform e2e testing on a Vue.js 3 component and pages. In addition, we also learned about end-to-end testing tools such as Cypress and Puppeteer, and how to use them to test an enterprise project effectively.
In this chapter, we will learn how to deploy Vue.js 3 projects to the AWS cloud. We will learn the best practices for deploying to AWS. In addition, we will learn how enterprise companies deploy their enterprise Vue.js 3 applications.
Additionally, we will learn about and explore different deployment options and best practices to deploy your Vue.js 3 project to various cloud providers. We will learn how to deploy the app to AWS and Azure.
We will cover the following key topics in this chapter:
- Introduction to CI/CD
- Overview of CI/CD
- What is a deployment pipeline?
- Overview of GitHub Actions
- Deploying...