@mohasinac/appkit 2.5.0 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/configs/next.js +6 -0
- package/package.json +1 -1
package/dist/configs/next.js
CHANGED
|
@@ -16,6 +16,12 @@
|
|
|
16
16
|
*/
|
|
17
17
|
const FIREBASE_EXTERNAL_PACKAGES = [
|
|
18
18
|
"firebase-admin",
|
|
19
|
+
// firebase-functions is only ever resolved inside the actual Firebase
|
|
20
|
+
// Functions runtime (appkit/functions). Next.js API routes in Vercel
|
|
21
|
+
// lambdas never call these binders, but the import chain reaches
|
|
22
|
+
// `_internal/server/jobs/runtime/adapters/firebase.js` via server-entry.
|
|
23
|
+
// Externalising avoids needing `firebase-functions` in consumer deps.
|
|
24
|
+
"firebase-functions",
|
|
19
25
|
"@google-cloud/firestore",
|
|
20
26
|
"@google-cloud/storage",
|
|
21
27
|
"@google-cloud/common",
|