This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { twMerge, type ClassNameValue } from "tailwind-merge"; | |
| /** | |
| * Recursive proxy; used to hack the type system. | |
| */ | |
| const proxyOf: any = new Proxy(() => proxyOf, { | |
| get: () => proxyOf, | |
| }); | |
| export namespace tva { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2' | |
| services: | |
| blackfox: | |
| build: . | |
| image: marekhanzal/blackfox | |
| container_name: blackfox | |
| hostname: blackfox | |
| ports: | |
| - "9088:80" | |
| - "9022:22" |