first commit
All checks were successful
Code quality checks / biome (push) Successful in 7s

This commit is contained in:
creations 2025-05-11 14:07:03 -04:00
commit 9389fd5f8c
Signed by: creations
GPG key ID: 8F553AA4320FC711
15 changed files with 418 additions and 0 deletions

5
types/config.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
type Environment = {
port: number;
host: string;
development: boolean;
};