mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-07 18:23:04 +00:00
12 lines
245 B
JavaScript
12 lines
245 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import vercel from '@astrojs/vercel';
|
|
|
|
import react from '@astrojs/react';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
adapter: vercel(),
|
|
integrations: [react()]
|
|
}); |