astro/examples/deno/astro.config.mjs
Elian ☕️ e88b23ea52
add Astro Deno Example (#3645)
* add Astro Deno Example

* add changeset

* update pnpm lock

Co-authored-by: Dan Jutan <danjutan@gmail.com>
2022-06-21 13:07:07 -04:00

9 lines
No EOL
183 B
JavaScript

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