diff options
author | 2022-03-30 08:42:19 -0400 | |
---|---|---|
committer | 2022-03-30 08:42:19 -0400 | |
commit | 13b271bc7d032f5f3749a9868532d12d442a09ef (patch) | |
tree | 4195d8472d0bb29b822054cf2b6184015f1e9eed /examples/ssr/astro.config.mjs | |
parent | 364ece8776e2544a141c390a73faed325e0deb5b (diff) | |
download | astro-13b271bc7d032f5f3749a9868532d12d442a09ef.tar.gz astro-13b271bc7d032f5f3749a9868532d12d442a09ef.tar.zst astro-13b271bc7d032f5f3749a9868532d12d442a09ef.zip |
Deno adapter (#2934)
* Bundle everything, commit 1
* Get everything working
* Remove dependency on readable-stream
* Adds a changeset
* Fix ts errors
* Use the node logger in tests
* Callback the logger when done writing
* Fix test helper to await the callback
* Use serialize-javascript again
* Remove dead code
* Rename hook
* Oops
Diffstat (limited to 'examples/ssr/astro.config.mjs')
-rw-r--r-- | examples/ssr/astro.config.mjs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/ssr/astro.config.mjs b/examples/ssr/astro.config.mjs index 448d5829d..ddb265905 100644 --- a/examples/ssr/astro.config.mjs +++ b/examples/ssr/astro.config.mjs @@ -1,9 +1,9 @@ import { defineConfig } from 'astro/config'; import svelte from '@astrojs/svelte'; -import nodejs from '@astrojs/node'; +import deno from '@astrojs/deno'; // https://astro.build/config export default defineConfig({ - adapter: nodejs(), + adapter: deno(), integrations: [svelte()], }); |