creator/web/astro.config.mjs
enricobuehler 518b819fe8 update readme
recreate web
- now using tailwind instead of unocss
- created theme/design system
- created first components
- add first sections/content
2023-06-25 13:31:24 +02:00

13 lines
229 B
JavaScript

import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
integrations: [
tailwind({
applyBaseStyles: false,
}),
],
});