Skip to content

Commit

Permalink
Turn the Tailwind configuration into TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
LSViana committed Oct 19, 2024
1 parent e49d954 commit bb54f07
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions tailwind.config.mjs → tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import type { Config } from 'tailwindcss'
import colors from 'tailwindcss/colors'

/**
* @typedef {import('tailwindcss').Config} Config
* @type {Partial<Config>}
*/
const config = {
const config: Partial<Config> = {
theme: {
fontFamily: {
sans: ['Lato', 'sans-serif'],
Expand Down

0 comments on commit bb54f07

Please sign in to comment.