Skip to content

Commit

Permalink
feat: convert Tailwind config file from JS to TS
Browse files Browse the repository at this point in the history
  • Loading branch information
ixartz committed Jan 6, 2024
1 parent 07906ff commit aff3b27
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tailwind.config.js → tailwind.config.ts
@@ -1,5 +1,6 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
import type { Config } from 'tailwindcss';

export default {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
fontSize: {
Expand Down Expand Up @@ -42,4 +43,4 @@ module.exports = {
},
},
plugins: [],
};
} satisfies Config;

0 comments on commit aff3b27

Please sign in to comment.