Migrating from Create React App (CRA) to Vite
Learn how to migrate your CRA app over to Vite.
Aug 22, 20227 min read125K

Search for a command to run...
Articles tagged with #create-react-app
Learn how to migrate your CRA app over to Vite.

I recently migrated from create-react-app (CRA) to ViteJS, and as part of that, I switched my test runner from Jest to Vitest. In this article, I go through all the steps I took as part of the migration, in the hope that it might help others who are ...

One problem we often face as frontend developers is dealing with CORS when making API requests. What is CORS? CORS (Cross-Origin Resource Sharing) is essentially a mechanism that allows a server to express what other domains can make requests to it. ...
