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