Skip to content

Commit

Permalink
updating deps, vercel adapter added
Browse files Browse the repository at this point in the history
  • Loading branch information
samifouad committed Jul 24, 2024
1 parent f710bf2 commit 243f75b
Show file tree
Hide file tree
Showing 5 changed files with 2,942 additions and 3,699 deletions.
14 changes: 9 additions & 5 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import svelte from "@astrojs/svelte";
import react from "@astrojs/react";
import { defineConfig } from 'astro/config'
import vercel from '@astrojs/vercel/serverless'
import tailwind from '@astrojs/tailwind'
import svelte from '@astrojs/svelte'
import react from '@astrojs/react'

// https://astro.build/config
export default defineConfig({
output: 'static',
output: 'hybrid',
adapter: vercel({
edgeMiddleware: true,
}),
integrations: [tailwind(), svelte(), react()]
});
Loading

0 comments on commit 243f75b

Please sign in to comment.