<Slushman />

unsplash-logo SOCIAL.CUT

How to Convert an Existing React App To Vite

Published Nov 17, 2023

I have several older projects created with Create React App. Since that’s been deprecated, it’s time to move them to something else and lately, I’ve been using React with Vite and I’m loving it. This article will show the step-by-step instructions for converting an existing React app to use Vite instead of CRA.

First, let me give props to Robin Wieruch and his instructions for doing this. Most of this came from there, plus the handful of things I’ll need for my projects. If you haven’t read his blog yet, check it out, he is sharp and explains things really well.

Before we get started, there a few requirements. First, install nvm, then use node version 18 or higher.

nvm use 18

Second, I’m using yarn for all the instructions here. If you prefer something else, you’ll need to translate it to the correct commands; they are slightly different.

Also, I use TypeScript in my projects, so I’ll add those instructions in with everything else here. If you don’t use TypeScript, you can ignore those parts.

Instructions

Step 1: Update Dependencies

Install Vite’s React plugin and related libraries, then remove the scripts from Create React App.

yarn add vite @vitejs/plugin-react --dev
yarn remove react-scripts

Step 2: Update package.json

Change all the scripts in the package.json file to use vite instead of react-scripts.

So this:

"scripts": {
  "start": "react-scripts start",
  "build": "react-scripts build",
  "eject": "react-scripts eject"
},

becomes:

"scripts": {
  "start": "vite",
  "build": "vite build",
  "serve": "vite preview"
},

Note: just remove the eject script altogether. It’s not a thing with Vite.

Finally, add this up near line 3 or 4:

"type": "module",

Step 3: Edit files

Vite requires .js files to have the .jsx extension. For TypeScript files, that would be .ts to .tsx. Go through all files in your project and rename them accordingly.

If you have a react-app-env.d.ts file, you can remove it. It helps TypeScript understand the Create React App scripts.

Edit index

Check the index.tsx file. You may need to make the following edits.

Change the ReactDOM import to: import ReactDOM from "react-dom/client"

Change the main output to:

ReactDOM.createRoot(document.getElementById("root")!).render(
  ...current content
);

You’ll need to remove the document.getElementById("root") from inside the render function now too.

Step 4: Configure Vite

Add a Vite config file

touch vite.config.js

Then edit the config to have the same output as CRA did.

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';

export default defineConfig(() => {
  return {
    build: {
      outDir: 'build',
    },
    plugins: [react()],
  };
});

Also, rename the postcss.config.js file to postcss.config.cjs.

Step 5: Edit index.html

Move the index.html file to the project root, since that’s where Vite expects it be.

mv public/index.html .

Then edit that file to remove any occurences of %PUBLIC_URL%. You can just find/replace that string with an empty replacement.

Lastly, add a script to the bottom of the body for the project index.

<script type="module" src="/src/index.jsx"></script>

That should be it! If you have any errors or issues, check the link to Robin’s article above. He goes through several errors as well as some additional common things you may run into, depending on the other dependencies in your project.

Share this post!

Check out the most recent posts:

How to Center in CSS

This is the ultimate guide to centering elements like images, text, and just about anything else using CSS.