0

When trying to deploy my firebase project with the bundler extension, I get the following warning:

⚠ hosting[project]: Unable to find a valid endpoint for function ext-firestore-bundle-builder-serve, but still including it in the config

This is what my firebase.json looks like:

{
  "hosting": {
    "source": ".",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ],
    "frameworksBackend": {
      "region": "europe-west1"
    },
    "rewrites": [
      {
        "source": "/bundles/*",
        "function": "ext-firestore-bundle-builder-serve"
      }
    ]
  }
}

What am I missing here?

1 Answer 1

0

I managed to get rid of the warning by enabling the extension "Firestore Bundle Builder" in the Firebase Console.

Not the answer you're looking for? Browse other questions tagged or ask your own question.