Tv
Tv
Well, dynamic imports manage to split the dependency into its own `.svelte-kit/output/client/**/_app/chunks/MyComponent-*.js`, which is then promptly bundled back into `_worker.js`. :-(
My understanding is that Cloudflare Pages does not bundle all the static html, images, etc into _worker.js (I think I heard it uses KV, but haven't seen that confirmed). It...
For posterity, that seemed to run `import()` a every time a view was toggled between a list and a map, and I wasn't sure of the performance implications of that,...
> Even if I were to do something like `os.Setenv("FIRESTORE_EMULATOR_HOST", ...)`, that would mean that I couldn't run tests in parallel with different emulators, as the environment variable is global....
@joshlf In my case, the tests run in multiple subprocesses, and I didn't want to impose coordination. The project id used concatenates a prefix, name of current test, and a...
Adding links for the benefit of others spelunking this issue: https://github.com/hashicorp/hcl/issues/89 (and many linked there) https://github.com/hashicorp/hcl/pull/203 One nasty side effect of this is that forcing users to parse/validate e.g. a...
For me, this got fixed by applying the config from https://github.com/swaywm/sway/issues/6931 and explicitly setting the cursor theme: ``` seat seat0 xcursor_theme Adwaita ```
Stackdriver has a few more levels on the severe end: ``` // Alert means a person must take an action immediately. Alert = Severity(logtypepb.LogSeverity_ALERT) // Emergency means one or more...
@alxn Good point (I didn't recognize them because of the presentation). However, it doesn't matter whether they're Stackdriver opinions or syslog opinions; they're log destination opinions that zap doesn't share,...
SESSION_SECRET and DATABASE_URL complicate this horribly. Since `npm run build` imports the program, those values need to be set even at build time!