We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 087336e commit d94df21Copy full SHA for d94df21
1 file changed
docs/manual/integration.md
@@ -800,6 +800,20 @@ deno add jsr:@fedify/fresh
800
> });
801
> ~~~~
802
803
+> [!WARNING]
804
+> Due to `@fedify/fedify` use `Temporal` inside, you should add `deno.unstable` to `compilerOptions.libs` field of `deno.json`.
805
+> ~~~~json
806
+> "compilerOptions": {
807
+> "lib": [
808
+> "dom",
809
+> "dom.asynciterable",
810
+> "dom.iterable",
811
+> "deno.ns",
812
+> "deno.unstable"
813
+> ],
814
+> ...
815
+> ~~~~
816
+
817
Put the following code in your *routes/_middleware.ts* file:
818
819
~~~~ typescript [_middelware.ts]
0 commit comments