We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa62d56 commit 0f72d4aCopy full SHA for 0f72d4a
src/nitro/firebase-aware.ts
@@ -0,0 +1 @@
1
+export * from './index.js';
src/nitro/index.ts
@@ -0,0 +1,9 @@
+import type { Request } from 'firebase-functions/v2/https';
2
+import type { Response } from 'express';
3
+
4
+const nuxt = import("nitro-output/index.mjs" as any);
5
6
+export const handle = async (req: Request, res: Response) => {
7
+ const { handler } = await nuxt;
8
+ handler(req, res);
9
+};
0 commit comments