Skip to content

Commit

Permalink
Migrate tailwind config file to typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveKeehl committed Nov 10, 2024
1 parent 0021e86 commit 554c775
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tailwind.config.js → 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'

const config = {
darkMode: "class",
content: ["./contents/**/*.tsx", "./popup/**/*.tsx"],
theme: {
Expand Down Expand Up @@ -90,4 +91,6 @@ module.exports = {
},
},
plugins: [],
}
} satisfies Config

export default config

0 comments on commit 554c775

Please sign in to comment.