lumeweb.com/astro.config.mjs

9 lines
270 B
JavaScript
Raw Normal View History

2023-04-27 23:33:58 +00:00
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
2023-04-28 00:40:05 +00:00
import react from '@astrojs/react';
2023-04-27 23:33:58 +00:00
import image from "@astrojs/image";
// https://astro.build/config
export default defineConfig({
2023-04-28 00:40:05 +00:00
integrations: [tailwind(), image(), react()]
2023-04-27 23:33:58 +00:00
});