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