Skip to content

Commit

Permalink
refactor: switch to typescript config file
Browse files Browse the repository at this point in the history
  • Loading branch information
doinel1a committed Jan 2, 2024
1 parent 4cce177 commit 9487ab6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tailwind.config.cjs → tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
import { type Config } from 'tailwindcss';

export default {
darkMode: ['class'],
content: [
'./pages/**/*.{ts,tsx}',
Expand Down Expand Up @@ -74,4 +75,4 @@ module.exports = {
}
},
plugins: [require('tailwindcss-animate')]
};
} satisfies Config;

0 comments on commit 9487ab6

Please sign in to comment.