Request for Refund – Deployment Issues on Railway
enhanceai-art
PROOP

a year ago

Hello Railway Team,

I'm facing severe issues deploying my Next.js app on Railway. The deployment fails due to numerous type errors and dependency conflicts, making it impossible to proceed. Despite multiple attempts to fix the issues, the platform does not seem compatible with my setup.

Since I'm unable to use the service as intended, I kindly request a refund. Please let me know the next steps.

Thanks,
Kushal

28 Replies

enhanceai-art
PROOP

a year ago

afebb387-fe5f-43b9-82ab-ab921970286f


dev
MODERATOR

a year ago

You can always make requests for refunds here:
(Billing History -> Refund)


enhanceai-art
PROOP

a year ago

if possible i would like to deploy my website


enhanceai-art
PROOP

a year ago

instead of refund


dev
MODERATOR

a year ago

I can try to help you, although I've never deployed a nextjs app before
first let's just get on the same page

are you building with nixpacks or docker?


enhanceai-art
PROOP

a year ago

yeah, also i have created my own docker file in project but that didn't worked


enhanceai-art
PROOP

a year ago

issue with npm packages installtion


dev
MODERATOR

a year ago

makes sense, perhaps you're using a different node version than Railway does
what node version does your app use?


enhanceai-art
PROOP

a year ago

everything is latest one


dev
MODERATOR

a year ago

so you're using node 23.8?


enhanceai-art
PROOP

a year ago

yeah above then 22 will work


enhanceai-art
PROOP

a year ago

i used nextjs 15 version so latest node version is required


dev
MODERATOR

a year ago

Seems NextjS 15.1.17 needs NodeJS 18.18 and above
Nixpacks support Node 16, 18, 20, and 22 (although only major versions can be specified)

so are you using node 22 then?


enhanceai-art
PROOP

a year ago

yeah


dev
MODERATOR

a year ago

Do you have that specified in your package.json ?


enhanceai-art
PROOP

a year ago

I tested on Ubuntu, and it works fine. I'm new to your platform and have zero knowledge about it, but I'm experiencing issues with Railway.


dev
MODERATOR

a year ago

yea i get that 😔 sorry that you're having trouble
but, do you have your node version specified in your package.json ?


enhanceai-art
PROOP

a year ago

nope, package.json is generated by nextjs default


dev
MODERATOR

a year ago

oh alright, let me check nextjs docs rq


enhanceai-art
PROOP

a year ago

sure


enhanceai-art
PROOP

a year ago


dev
MODERATOR

a year ago

ah I see, it only auto generates it when you create next-app


dev
MODERATOR

a year ago

in that case it's safe to alter it


dev
MODERATOR

a year ago

if you're using Node 22 locally, then you'll want to add this to your package.json

{
  "engines": {
    "node": "22"
  }
}

This will tell Railway that it should build your appllication in a node 22 environment


dev
MODERATOR

a year ago

make sure you are actually using node 22 locally though, you can do that by running node -v in the command line


enhanceai-art
PROOP

a year ago

lemme do


enhanceai-art
PROOP

a year ago

it worked. thanks


dev
MODERATOR

a year ago

awesome! happy I could help 🙂


Loading...