Skip to content

Commit

Permalink
add Tailwind CSS configuration and update styles; clean up blog posts…
Browse files Browse the repository at this point in the history
… and dependencies
  • Loading branch information
Shubham-Rasal committed Oct 12, 2024
1 parent 1a50be9 commit 76b6dcd
Show file tree
Hide file tree
Showing 13 changed files with 7,749 additions and 8,015 deletions.
6 changes: 3 additions & 3 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineConfig } from 'astro/config';
import tailwind from "@astrojs/tailwind";
import tailwind from '@astrojs/tailwind';
import vercel from '@astrojs/vercel/serverless';
import react from "@astrojs/react";
import remarkToc from 'remark-toc';
Expand All @@ -8,7 +8,7 @@ import { remarkReadingTime } from './remark-reading-time.mjs';

// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), react()],
integrations: [react(), tailwind()],
output: 'hybrid',
adapter: vercel({
webAnalytics: {
Expand All @@ -17,7 +17,7 @@ export default defineConfig({
}),
markdown: {
// Applied to .md and .mdx files
remarkPlugins: [remarkToc , remarkReadingTime],
remarkPlugins: [remarkToc, remarkReadingTime],
rehypePlugins: [rehypeAccessibleEmojis],
},
site: 'https://bluequbits.vercel.app/'
Expand Down
Loading

0 comments on commit 76b6dcd

Please sign in to comment.