feat: add github oauth configuration

This commit is contained in:
Lewis Wynne 2026-01-23 03:50:44 +00:00
parent ac667a243d
commit 4a979080af
3 changed files with 24 additions and 0 deletions

View file

@ -1,5 +1,6 @@
import { defineConfig } from 'astro/config';
import vercel from '@astrojs/vercel';
import auth from 'auth-astro';
import remarkDirective from 'remark-directive';
import remarkGfm from 'remark-gfm';
import remarkSlug from 'remark-slug';
@ -9,6 +10,7 @@ import remarkAside from './src/plugins/remark-aside.ts';
export default defineConfig({
output: 'static',
adapter: vercel(),
integrations: [auth()],
markdown: {
remarkPlugins: [
remarkGfm,