Next.js Discord

Discord Forum

.well-known using Route Handler

Answered
Longtail tuna posted this in #help-forum
Open in Discord
Longtail tunaOP
I'm wondering if it's possible to create content under .well-known using route handlers instead of static content in the public folder?
Answered by joulev
.well-known/route.ts yes it's possible
View full answer

7 Replies

Answer
Longtail tunaOP
I've tried creating `/app/.well-known/matrix/server/route.ts and it doesn't seem to be recognized.
@joulev `.well-known/route.ts` yes it's possible
Longtail tunaOP
export async function GET() {
    const wellKnownMatrixServer = {
        "m.server": "*********",
    };

    return new Response(JSON.stringify(wellKnownMatrixServer), {
        headers: {
          'Content-Type': 'application/json',
        },
      });
}
Hmmm, scratch that. It seems to work on the production build, but not locally.
@Longtail tuna Hmmm, scratch that. It seems to work on the production build, but not locally.
uh it's supposed to work in dev mode as well, could you tell me what happened when you tried it in dev mode?
@joulev uh it's supposed to work in dev mode as well, could you tell me what happened when you tried it in dev mode?
Longtail tunaOP
I'm running it through code server. I'm guessing it's my reverse proxy causing the issue.
yeah i think that is the case, this code should work just fine in dev mode