0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-10 22:38:53 -05:00
astro/examples/deno/astro.config.mjs
Elian ☕️ f2b515d0b4
Add Deno example (#4641)
* Add Deno example

* update lockfile

* update README

* update README
2022-09-20 08:29:33 -04:00

9 lines
No EOL
182 B
JavaScript

import { defineConfig } from 'astro/config';
import deno from "@astrojs/deno";
// https://astro.build/config
export default defineConfig({
output: "server",
adapter: deno()
});