Skip to content

Commit

Permalink
feature: add tailwindcss to the project
Browse files Browse the repository at this point in the history
  • Loading branch information
justin1dennison committed Nov 20, 2024
1 parent fc66c2d commit ac30b4f
Show file tree
Hide file tree
Showing 4 changed files with 687 additions and 3 deletions.
6 changes: 4 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ import mdx from "@astrojs/mdx";

import sitemap from "@astrojs/sitemap";

import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
site: "https://justin1dennison.github.io",
base: "/personal",
integrations: [mdx(), sitemap()],
});
integrations: [mdx(), sitemap(), tailwind()],
});
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "blog",
"name": "personal",
"type": "module",
"version": "0.0.1",
"scripts": {
Expand All @@ -14,11 +14,14 @@
"@astrojs/mdx": "^3.1.9",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"astro": "^4.16.7",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1"
}
Expand Down
Loading

0 comments on commit ac30b4f

Please sign in to comment.