Hi, I'm Kajal 👋

A Developer at Heart

Move your app from Parcel to Vite

2 minutes
February 27, 2023

Below are the list of changes needed to switch from Parcel to Vite:

NOTE: I need to make above changes to the existing package.json

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

// https://vitejs.dev/config/
export default defineConfig({

plugins: [react()],

})