Skip to content

Commit

Permalink
chore: convert tailwind config to typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
agustinusnathaniel committed Dec 27, 2023
1 parent 2d0bd9a commit f672b23
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
13 changes: 0 additions & 13 deletions tailwind.config.js

This file was deleted.

15 changes: 15 additions & 0 deletions tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/* eslint-disable import/no-extraneous-dependencies */
import tailwindTypography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';
import { fontFamily } from 'tailwindcss/defaultTheme';

export default {
darkMode: ['class'],
content: ['src/**/*.{js,jsx,ts,tsx}'],
theme: {
fontFamily: {
sans: ['var(--font-sans)', ...fontFamily.sans],
},
},
plugins: [tailwindTypography],
} satisfies Config;

1 comment on commit f672b23

@vercel
Copy link

@vercel vercel bot commented on f672b23 Dec 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nextarter-tailwind – ./

nextarter-tailwind-git-main-sozonome.vercel.app
nextarter-tailwind-sozonome.vercel.app
nextarter-tailwind.sznm.dev

Please sign in to comment.