generated from marciobever/template-astro-base
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
|
|
// @ts-check
|
||
|
|
import { defineConfig } from 'astro/config';
|
||
|
|
|
||
|
|
import react from '@astrojs/react';
|
||
|
|
import tailwind from '@astrojs/tailwind';
|
||
|
|
|
||
|
|
// https://astro.build/config
|
||
|
|
export default defineConfig({
|
||
|
|
integrations: [react(), tailwind()]
|
||
|
|
});
|