Skip to content

Commit

Permalink
Continue to shake tree
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn Keast committed Aug 2, 2021
1 parent e1a96e2 commit 1fff645
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
module.exports = {
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./_posts/*.{md}",
"./_projects/*.{md}",
"./_talks/*.{md}"
],
transform: {
md: (content) => {
return remark().process(content)
}
purge: {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./_posts/**/*.{md}",
"./_projects/**/*.{md}",
"./_talks/**/*.{md}"
],
transform: {
md: (content) => {
return remark().process(content)
}
},
},
darkMode: false, // or 'media' or 'class'
theme: {
Expand Down

1 comment on commit 1fff645

@vercel
Copy link

@vercel vercel bot commented on 1fff645 Aug 2, 2021

Choose a reason for hiding this comment

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

Please sign in to comment.