Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data routes without base path return 404 #670

Closed
alebelcor opened this issue Dec 11, 2024 · 3 comments
Closed

Data routes without base path return 404 #670

alebelcor opened this issue Dec 11, 2024 · 3 comments

Comments

@alebelcor
Copy link
Contributor

Hi,

I'm seeing an error where data routes aren't being handled correctly and end up as HTTP 404.

These are the versions I'm using:

  • next version: 14.2.20
  • @opennextjs/aws version: 3.2.2

Adding log statements to the package I was able to figure out the 404s was coming from here, i.e. the data routes aren't being detected as anything.

Not 100% sure but it sort of looks like the code should be going into this block but isn't for me.

I'm using a basePath (in my next.config.js) for my app, so to illustrate let's say it's /foo.

I noticed dataPattern didn't include the base path/prefix so I thought might as well try and hardcode it here to test, e.g.:

const dataPattern = `/foo/_next/data/${buildId}`;

And it worked. The data routes started to work (i.e. no 404) after that.

Is it possible the base path/prefix is missing on that line and should be added? Or maybe it's something else that's odd in my setup that could be causing OpenNext to not work for data routes?

I'd appreciate any feedback.

Thanks!

@conico974
Copy link
Contributor

You're right it should be done there.
Something like that should do the trick ${NextConfig.basePath ?? ""}/_next/data/${buildId} (Not tested).
Could you open a PR for it ?

@alebelcor
Copy link
Contributor Author

Absolutely, I'll have something soon.

Thank you for confirming.

@alebelcor
Copy link
Contributor Author

Fixed in #672

Thanks for the help!

Closing this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants