Skip to content

Commit

Permalink
Fixed looping rebuild
Browse files Browse the repository at this point in the history
Something was playing up with the ** wildcard used in the changed string. See gatsbyjs/gatsby#35775 and https://www.gatsbyjs.com/docs/how-to/styling/tailwind-css/
  • Loading branch information
RYRY1002 committed Apr 3, 2024
1 parent 325d3d3 commit 9830d56
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class"],
darkMode: "class",
content: [
'./pages/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
'./app/**/*.{ts,tsx}',
'./src/**/*.{ts,tsx}',
//'./src/**/!(*.d).{ts,tsx}',
'./src/{components,lib,pages,posts,styles}/**/!(*.d).{ts,tsx,js,jsx}'
],
prefix: "",
theme: {
Expand Down

0 comments on commit 9830d56

Please sign in to comment.