From 16e317c2166905ac30f3f35e3e8b3c9eb32a707e Mon Sep 17 00:00:00 2001 From: Ezra Sowden-Guzman Date: Tue, 15 Aug 2023 16:36:52 -0400 Subject: [PATCH] test simple response --- src-ssr/production-export.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src-ssr/production-export.ts b/src-ssr/production-export.ts index 2412813b4..611c9b974 100644 --- a/src-ssr/production-export.ts +++ b/src-ssr/production-export.ts @@ -7,6 +7,6 @@ * This file is used ONLY on production. */ -import { ssrProductionExport } from 'quasar/wrappers'; - -export default ssrProductionExport(async ({ ssrHandler }: { ssrHandler: unknown }) => ({ onRequest: ssrHandler })); +export function onRequest() { + return new Response('Hello, world!'); +}