From 151b4342954d17cee02aa21cc6936ac92b27b223 Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Wed, 22 Feb 2023 15:39:54 -0500 Subject: [PATCH] maybe continue --- netlify-server.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netlify-server.ts b/netlify-server.ts index 45e7d928..7c8a02d8 100644 --- a/netlify-server.ts +++ b/netlify-server.ts @@ -32,8 +32,8 @@ export function createRequestHandler({ const { pathname } = new URL(request.url) // Skip the handler for static files if (pathname.startsWith(`${assetPath}/`)) { - console.log('Skipping Remix handler for static file', pathname) - return + console.log('Continuing Remix handler for static file', pathname) + // return } try { const loadContext = (await getLoadContext?.(request, context)) || context