Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix broken tailwindcss/postcss referencing
  • Loading branch information
Jibola committed Mar 19, 2025
commit 80666f57b7897cd5d9da6faec7ef53fad8907e30
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import "tailwindcss";
@tailwind base;

html,
Expand All @@ -9,4 +10,4 @@ body,
}

@tailwind components;
@tailwind utilities;
@tailwind utilities;
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
module.exports = {
const config = {
plugins: {
autoprefixer: {},
'@tailwindcss/postcss': {},
autoprefixer: {},
},

};

export default config;