mirror of
https://github.com/ChenQihan666/MyBlog-Next.git
synced 2026-08-14 19:32:32 +08:00
13 lines
241 B
JavaScript
13 lines
241 B
JavaScript
import { defineConfig } from "astro/config";
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
tailwind({
|
|
config: { applyBaseStyles: false },
|
|
}),
|
|
],
|
|
});
|