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

Handle only Remix requests on port 80 #32

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions workspaces/remix-electron/src/index.mts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,17 @@ export async function initRemix({
await app.whenReady()

protocol.handle("http", async (request) => {
const url = new URL(request.url)
if (
// We only want to handle local (Remix) requests to port 80.
// Requests to other hosts or ports should not be intercepted,
// this might be the case when an application makes requests to a local service.
!["localhost", "127.0.0.1"].includes(url.hostname) ||
(url.port && url.port !== "80")
) {
return await fetch(request)
}

request.headers.append("Referer", request.referrer)
try {
const assetResponse = await serveAsset(request, publicFolder)
Expand Down
Loading