mirror of
https://github.com/SrIzan10/spongebin.git
synced 2026-05-01 11:05:09 +00:00
14 lines
356 B
JavaScript
14 lines
356 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwind from "@astrojs/tailwind";
|
|
import preact from "@astrojs/preact";
|
|
|
|
import vercel from "@astrojs/vercel/serverless";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
site: 'https://bin.durocodes.me',
|
|
integrations: [tailwind(), preact()],
|
|
output: 'server',
|
|
adapter: vercel()
|
|
});
|