From 38d7e90a887b6f3d5df23f6359be526f75469787 Mon Sep 17 00:00:00 2001 From: Ezra Sowden-Guzman Date: Fri, 11 Aug 2023 19:12:11 -0400 Subject: [PATCH] try updating production-exports.ts --- src-ssr/production-export.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src-ssr/production-export.ts b/src-ssr/production-export.ts index cbe3d6514..ee2ef21dc 100644 --- a/src-ssr/production-export.ts +++ b/src-ssr/production-export.ts @@ -9,9 +9,4 @@ import { ssrProductionExport } from 'quasar/wrappers'; -export default ssrProductionExport(async ({ app, port, isReady }) => { - await isReady(); - return app.listen(port, () => { - console.log('Server listening at port ' + port); - }); -}); +export default ssrProductionExport(async ({ ssrHandler }: { ssrHandler: (() => void) }) => ({ onRequest: ssrHandler }));