Skip to content

Commit

Permalink
fix: npm build (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio authored Dec 4, 2024
1 parent 9b191e4 commit fc95d39
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import container from '@tailwindcss/container-queries';

export default {
darkMode: 'selector',
content: [
Expand Down Expand Up @@ -37,9 +41,5 @@ export default {
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/container-queries'),
],
plugins: [forms, typography, container],
};

0 comments on commit fc95d39

Please sign in to comment.