Daniel Staudigel
Daniel Staudigel
> If you create your own storage, you can pass that into your config. > > ```js > import { defineNuxtConfig } from 'nuxt' > > export default defineNuxtConfig({ >...
🙈 (in plugins/authorization-storage.client.ts) ``` import { Preferences } from "@capacitor/preferences"; export async function getItem(key: string): Promise { const v = (await Preferences.get({ key })).value; return v; } export async function...
Bump! I spent a while trying to figure out how to get a simple example working, I'm going to leave it here in case someone finds my confusion valuable. I...
Thank you for your response, and you were right, the code I pasted first did not work as expected in general, only for one of the inputs that I happened...
Perhaps relevant, when testing error states using Deno test, if you don't `await` the `error.context.json()` (or not JSON, if you have a non-json endpoint), you can a gross (and somewhat...
I say HTTP-ish because websockets aren't really "normal" HTTP in my mind (I haven't read the spec, but my guess is they actually /are/ HTTP in the sense that matters,...
Cool! By the way, dinghy is a candle in the dark, it's made my whole development environment unbeatably awesome.
I'm not particularly good at Go, but if I get some spare time, I'll definitely look into it.