Skip to content

Commit

Permalink
refactor: tailwind config
Browse files Browse the repository at this point in the history
  • Loading branch information
mwskwong authored Dec 18, 2024
1 parent 32f9e04 commit f5ee1ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import { radixThemePreset } from 'radix-themes-tw';
import type { Config } from 'tailwindcss';

export default {
const config = {
presets: [radixThemePreset],
content: [
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
plugins: [],
} satisfies Config;

export default config;

0 comments on commit f5ee1ab

Please sign in to comment.