Skip to content

Commit c371dfc

Browse files
committed
Spec errors support
- Added dynamic routes to support specification errors Notes: - Return type based on Accept header - Enabled SSR on netlify Closes #200 Signed-off-by: Jean-Baptiste Bianchi <[email protected]>
1 parent d452f77 commit c371dfc

15 files changed

+923
-44
lines changed

astro.config.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import { defineConfig } from 'astro/config';
33
import mdx from '@astrojs/mdx';
44
import sitemap from '@astrojs/sitemap';
5-
65
import tailwind from '@astrojs/tailwind';
6+
import netlify from '@astrojs/netlify';
77

88
// https://astro.build/config
99
export default defineConfig({
@@ -19,4 +19,5 @@ export default defineConfig({
1919
wrap: true,
2020
},
2121
},
22+
adapter: netlify(),
2223
});

0 commit comments

Comments
 (0)