mirror of
https://github.com/Xevion/dynamic-preauth.git
synced 2025-12-06 01:14:55 -06:00
13 lines
295 B
JavaScript
13 lines
295 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import tailwind from '@astrojs/tailwind';
|
|
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
import preact from '@astrojs/preact';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), sitemap(), preact()]
|
|
}); |