astro/examples/deno/astro.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
182 B
JavaScript
Raw Normal View History

import { defineConfig } from 'astro/config';
2022-09-20 12:32:27 +00:00
import deno from '@astrojs/deno';
// https://astro.build/config
export default defineConfig({
2022-09-20 12:32:27 +00:00
output: 'server',
adapter: deno(),
});