Skip to content

Commit

Permalink
add tailwind typography
Browse files Browse the repository at this point in the history
  • Loading branch information
TrebleSketch committed Dec 29, 2024
1 parent 53e1d62 commit fd2f262
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 2 deletions.
2 changes: 1 addition & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import tailwind from '@astrojs/tailwind';
// https://astro.build/config
export default defineConfig({
integrations: [tailwind()],
site: 'https://treblesketch.github.io',
site: 'https://treblesketch.github.io', //might be https://treblesketch.github.io/treble-astro/ ?
base: 'treble-astro',
});
54 changes: 54 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,8 @@
"@astrojs/tailwind": "^5.1.4",
"astro": "^5.1.1",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15"
}
}
4 changes: 3 additions & 1 deletion tailwind.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ export default {
theme: {
extend: {},
},
plugins: [],
plugins: [
require('@tailwindcss/typography')
],
}

0 comments on commit fd2f262

Please sign in to comment.