dovršen rendering homepage-a

This commit is contained in:
2024-01-04 14:46:31 +01:00
parent 496814d039
commit f11987dd3a
8 changed files with 102 additions and 72 deletions

8
app/lib/global.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import { MongoClient } from "mongodb";
declare global {
namespace globalThis {
/** global Mongo Client used in development */
var _mongoClientPromise: Promise<MongoClient>
}
}