Amit Upadhyay
Amit Upadhyay
``` -- component notification: boolean $open: false -- ftd.column: width: fill-container $on-click$: $ftd.toggle($a = $notification.open) $on-click-outside$: $ftd.set-boolean($a = $notification.open, v = false) -- ftd.image: src: $assets.files.slides.assets.notification.svg width.fixed.px: 24 height.fixed.px: 24...
```ftd -- record form: string title: -- form $f: title: some title -- ftd.text-input: value: $f.title $on-input$: $set_title($f=$f, value=$VALUE) -- void set_title(f, value): form $f: string value: f.title = value...
## Issue When I am loading a fastn powered website in dark mode, it first loads all light mode images (because fastn serves pages with light mode always, and on...
For some reason we return gzip content if browser supports both gzip and brotli. Gzip is slightly worse than brotli.
Eg https://fastn.com/built-in-functions/ on Safari, Mac.
In fastn.com the document title is missing from the HEAD block.
I tried using supabase, and faced issue when connecting from local machine. This needs more research.
How I have tested: Create an account on supabase.com, and create a project (which creates a database). Download the certificate for that database. ```sh export FASTN_PG_CERTIFICATE=prod-ca-2021.crt export FASTN_PG_URL= fastn serve...
When building [my site](https://github.com/amitu/dotcom), fastn is trying to download `https://fifthtry.github.io/doc-site/-typography/index.ftd`, which is not included directly or indirectly in my dependency graph. My dependency does include `fifthtry.github.io/raleway-typography` etc, so maybe we...