Skip to content
Closed
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import icon from "astro-icon";
import tailwindcss from "@tailwindcss/vite";

const oldCivcURL = "/blog/2019-06-22-introducing-civc-tech-to-san-franciscos-underserved-communities";

Expand Down Expand Up @@ -39,6 +40,9 @@ export default defineConfig({
modules: {
localsConvention: "camelCase",
}
}
},
plugins: [
tailwindcss()
]
Comment on lines +44 to +46

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding a comment explaining why Tailwind CSS is being added as a plugin. This can help future developers understand the purpose of this configuration.

    plugins: [
      tailwindcss() // Integrate Tailwind CSS for styling
    ]

}
});
Loading
Loading