is CRA deprecated #13368
Unanswered
Ali-Milani-13
asked this question in
Q&A
is CRA deprecated
#13368
Replies: 2 comments 5 replies
-
CRA isn't dead, we can still use it to generate react projects! You can use this link |
Beta Was this translation helpful? Give feedback.
1 reply
-
How is vite unstable, exactly? It's a mature project.
Vite has official templates for react: import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
}) to load the react plugin. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I see lots of articles and YouTube videos talking about CRA is dead and this is why React.dev doesn't recommend it anymore. people are switching to Vite.
but for me Vite is unstable, and you have to configure everything yourself which is time consuming.
I noticed that React.dev don't recommend Vite either. it just recommends Remix,Next and Gatsby.
so.
is CRA is dead or I can still use it? because it feels good and easy to use it.
Beta Was this translation helpful? Give feedback.
All reactions