Skip to content

Commit

Permalink
Readability updates (#2134)
Browse files Browse the repository at this point in the history
  • Loading branch information
rstacruz authored Apr 3, 2024
1 parent 511de90 commit 42dd9ef
Show file tree
Hide file tree
Showing 23 changed files with 623 additions and 225 deletions.
13 changes: 11 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import partytown from '@astrojs/partytown'
/*
* https://astro.build/config
*/
import tailwind from '@astrojs/tailwind'

// https://astro.build/config
export default defineConfig({
site: 'https://devhints.io',
build: {
Expand All @@ -16,8 +19,14 @@ export default defineConfig({
server: {
host: true
} /* access from https://192.168.x.x/ */,
integrations: [partytown({ config: { forward: ['dataLayer.push'] } })],

integrations: [
partytown({
config: {
forward: ['dataLayer.push']
}
}),
tailwind()
],
markdown: {
// Syntax highlighting is handled by render()
syntaxHighlight: false
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@
},
"dependencies": {
"@astrojs/partytown": "^2.0.2",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/ts-plugin": "^1.3.1",
"@fontsource/cousine": "^5.0.15",
"@fontsource/manrope": "^5.0.19",
"@mapbox/rehype-prism": "^0.8.0",
"@playwright/test": "^1.38.1",
"@rstacruz/rehype-sectionize": "^0.7.0",
Expand All @@ -32,6 +34,7 @@
"@typescript-eslint/parser": "^7.2.0",
"astro": "^4.0.3",
"autocompleter": "^9.1.0",
"clsx": "^2.1.0",
"concurrently": "^8.2.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
Expand All @@ -49,9 +52,9 @@
"prismjs": "1.29.0",
"rehype-parse": "^9.0.0",
"rehype-stringify": "^10.0.0",
"sanitize.css": "13.0.0",
"sass": "^1.69.1",
"snarkdown": "^2.0.0",
"tailwindcss": "^3.4.3",
"tsx": "^4.7.1",
"unified": "^11.0.3",
"vitest": "^1.4.0",
Expand Down
Loading

0 comments on commit 42dd9ef

Please sign in to comment.