2024-05-04 06:18:31 +00:00
|
|
|
import { defineConfig } from "astro/config";
|
2024-05-01 05:27:07 +00:00
|
|
|
|
2024-05-16 10:13:10 +00:00
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
|
2024-05-01 04:57:25 +00:00
|
|
|
// https://astro.build/config
|
2024-05-01 05:27:07 +00:00
|
|
|
export default defineConfig({
|
2024-06-07 22:54:24 +00:00
|
|
|
site: "https://blog.log101.dev",
|
2024-05-16 10:13:10 +00:00
|
|
|
integrations: [
|
|
|
|
tailwind({
|
|
|
|
applyBaseStyles: false,
|
|
|
|
}),
|
|
|
|
],
|
2024-05-04 06:18:31 +00:00
|
|
|
});
|