Skip to content

Commit

Permalink
refactor: rewrite tailwind config in typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
kacperwyczawski committed Feb 1, 2024
1 parent be2c257 commit 3f89b25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 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} */
const defaultTheme = require('tailwindcss/defaultTheme')
import type { Config } from 'tailwindcss'
import defaultTheme from 'tailwindcss/defaultTheme'

export default {
content: [
'./index.html',
Expand Down Expand Up @@ -41,5 +42,4 @@ export default {
}
],
},
}

} satisfies Config

0 comments on commit 3f89b25

Please sign in to comment.