`firebase serve` can handle a `firebase.json` that looks like this: ```json { "hosting": { "public": "public", ... } } ``` `superstatic` wants the "parent" `hosting` key removed, so it looks like this: ```json { "public": "public", ... } ``` (This should be fixed by https://github.com/firebase/superstatic/pull/226.)
firebase servecan handle afirebase.jsonthat looks like this:{ "hosting": { "public": "public", ... } }superstaticwants the "parent"hostingkey removed, so it looks like this:{ "public": "public", ... }(This should be fixed by #226.)