Update deno integration dependencies (#5573)

* Update deno integration dependencies

* Update dependency in docs
This commit is contained in:
Lino Le Van 2022-12-10 06:26:51 -08:00 committed by GitHub
parent 64b24f0663
commit 5b323b9aaf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -130,7 +130,7 @@ export default defineConfig({
If you disable this, you need to write your own Deno web server. Import and call `handle` from the generated entry script to render requests:
```ts
import { serve } from "https://deno.land/std@0.132.0/http/server.ts";
import { serve } from "https://deno.land/std@0.167.0/http/server.ts";
import { handle } from './dist/entry.mjs';
serve((req: Request) => {

View file

@ -2,7 +2,7 @@
import type { SSRManifest } from 'astro';
import { App } from 'astro/app';
// @ts-ignore
import { Server } from 'https://deno.land/std@0.132.0/http/server.ts';
import { Server } from 'https://deno.land/std@0.167.0/http/server.ts';
// @ts-ignore
import { fetch } from 'https://deno.land/x/file_fetch/mod.ts';