James Hegedus
James Hegedus
Is this even an issue? `gcloud` will complain even though this is just recognizing the existing shim. Perhaps we log to ignore the warning? `gcloud` warnings can probably be suppressed...
Solus setup: ``` sudo eopkg install font-jetbrainsmono-ttf ```
Yabai seems like overkill, Rectangle doesn't seem that much better than Spectacle
Hi @mattgabor , I would recommend the example in [this repo](https://github.com/jthegedus/firebase-gcp-examples/tree/master/functions-nextjs) over other two examples (`firebase/functions-samples` or `nextjs/examples/with-firebase-hosting`). I am updating this example again this weekend after the latest 9.3...
The one in this repo should be good to go, except for changes like this https://cloud.google.com/functions/docs/securing/managing-access-iam#allowing_unauthenticated_function_invocation
@mattgabor Here is an example using the new Next.js Static Site Generation feature with Firestore. Blog post to come. https://github.com/jthegedus/firebase-gcp-examples/tree/master/hosting-nextjs-ssg This is not the updated SSR example I promised. Hopefully...
@mattgabor Please see the new example here https://github.com/jthegedus/firebase-gcp-examples/tree/master/functions-nextjs
Hi @joshleong I will try my best to explain everything: `TODO_YOUR_WEB_APP_DEPLOY_TARGET_HERE`: You can create multiple apps in a single Firebase project, this is how you can have an Android, iOS...
Well, I've no idea from that error output 🤷 Perhaps try running each of those commands individually: ``` npm run clean next build node ./scripts/export.js ```
You need to fix your `hosting` configuration: ``` "hosting": { "site": "TODO_YOUR_WEB_APP_DEPLOY_TARGET_HERE", "public": "out/", "cleanUrls": true, "rewrites": [ { "source": "**", "function": "nextjs-server" } ] } ``` The `out/` dir...