Gustav Genberg

Results 2 comments of Gustav Genberg

I am currently running many different applications behind an nginx reverse proxy. By having the applications listen on a unix socket, I do not have to deal with a ton...

```typescript import { cva, cx } from "class-variance-authority"; const variants = { variant: { "blue": cx("bg-blue-500"), "red": cx("bg-red-500"), // ... "yellow": cx("bg-yellow-500"), "green": cx("bg-green-500"), } } const button = cva(null,...