"It looks like there is a custom Babel configuration can be removed ."
Answered
Saltwater Crocodile posted this in #help-forum
Saltwater CrocodileOP
On my server I used to have a
Apparently this is no longer needed now in Next.js 13, but the message warning users about it looks extremely unprofessional.
Not only is the grammar off, there's also a weird space before the final dot.
Can someone who's already working on the codebase submit a pull request?
I would love to do it myself, but I wouldn't know where to start.
The exact file in the repo containing the message string is:
.babelrc file to disable @next/swc, because it wouldn't run on CentOS 7.Apparently this is no longer needed now in Next.js 13, but the message warning users about it looks extremely unprofessional.
"It looks like there is a custom Babel configuration can be removed ."
Not only is the grammar off, there's also a weird space before the final dot.
Can someone who's already working on the codebase submit a pull request?
I would love to do it myself, but I wouldn't know where to start.
The exact file in the repo containing the message string is:
next.js/packages/next/src/build/babel/loader/get-config.ts3 Replies
@Saltwater Crocodile On my server I used to have a `.babelrc` file to disable `@next/swc`, because it wouldn't run on CentOS 7.
Apparently this is no longer needed now in Next.js 13, but the message warning users about it looks extremely unprofessional.
> "It looks like there is a custom Babel configuration can be removed ."
Not only is the grammar off, there's also a weird space before the final dot.
Can someone who's already working on the codebase submit a pull request?
I would love to do it myself, but I wouldn't know where to start.
The exact file in the repo containing the message string is:
next.js/packages/next/src/build/babel/loader/get-config.ts
you can read the [contribution guide](https://github.com/vercel/next.js/blob/canary/contributing.md) to get started with contributing code to next.js. though if tomorrow morning my time you haven't done that then i'll make a PR for this
PR opened in https://github.com/vercel/next.js/pull/55088
Answer
Saltwater CrocodileOP
Thanks! The "40-minute walkthrough video on how to contribute to Next.js" seemed daunting so I shied away from it.