Skip to content

Commit ca3920a

Browse files
authored
refactor: tailwind config ts (gitify-app#1557)
Signed-off-by: Adam Setch <[email protected]>
1 parent 037af4e commit ca3920a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tailwind.config.js renamed to tailwind.config.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
/** @type {import('tailwindcss').Config} */
2-
export default {
1+
import type { Config } from 'tailwindcss';
2+
3+
const config: Config = {
34
content: ['./src/**/*.js', './src/**/*.ts', './src/**/*.tsx'],
45
darkMode: 'class',
56
theme: {
@@ -22,3 +23,5 @@ export default {
2223
},
2324
plugins: [],
2425
};
26+
27+
export default config;

0 commit comments

Comments
 (0)