45fdbc4650
* Don’t use Buffer.byteLength() as Deno can’t use it * Add changeset * Add tests for Markdown & MDX with Deno Co-authored-by: Matthew Phillips <matthew@skypack.dev>
10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import deno from '@astrojs/deno';
|
|
import react from '@astrojs/react';
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
export default defineConfig({
|
|
adapter: deno(),
|
|
integrations: [react(), mdx()],
|
|
output: 'server',
|
|
})
|