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