2023-09-03 02:20:19 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
2023-09-06 13:48:01 +00:00
|
|
|
import tailwind from "@astrojs/tailwind";
|
2023-09-03 02:20:19 +00:00
|
|
|
|
2023-09-06 13:48:01 +00:00
|
|
|
import react from "@astrojs/react";
|
2023-09-03 02:20:19 +00:00
|
|
|
|
2023-09-06 13:48:01 +00:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
|
|
|
integrations: [
|
|
|
|
tailwind({
|
|
|
|
applyBaseStyles: false,
|
|
|
|
}),
|
|
|
|
react()
|
|
|
|
]
|
|
|
|
});
|