Skip to content

Commit

Permalink
feat: replace tailwind config with one written in typescript and remo…
Browse files Browse the repository at this point in the history
…ve postcss config
  • Loading branch information
kacperwyczawski committed Feb 1, 2024
1 parent d9ae0ed commit e309894
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
6 changes: 0 additions & 6 deletions postcss.config.js

This file was deleted.

7 changes: 4 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} */
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,5 @@ export default {
}
],
},
}
} satisfies Config

0 comments on commit e309894

Please sign in to comment.