blob: b8dd324a4f87812b97da0bc7c1eaea8764bcd921 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { defineConfig } from 'astro/config';
import deno from "@astrojs/deno";
// https://astro.build/config
export default defineConfig({
adapter: deno({
port: 3000,
}),
});
|