Skip to content

Commit

Permalink
refactor: tailwind config ts (#1557)
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Setch <[email protected]>
  • Loading branch information
setchy authored Sep 27, 2024
1 parent 037af4e commit ca3920a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 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} */
export default {
import type { Config } from 'tailwindcss';

const config: Config = {
content: ['./src/**/*.js', './src/**/*.ts', './src/**/*.tsx'],
darkMode: 'class',
theme: {
Expand All @@ -22,3 +23,5 @@ export default {
},
plugins: [],
};

export default config;

0 comments on commit ca3920a

Please sign in to comment.