this repo has no description
1/** @type {import('tailwindcss').Config} */
2module.exports = {
3 content: [
4 './src/pages/**/*.{js,ts,jsx,tsx,mdx}',
5 './src/components/**/*.{js,ts,jsx,tsx,mdx}',
6 './src/app/**/*.{js,ts,jsx,tsx,mdx}',
7 ],
8 theme: {
9 extend: {
10 backgroundImage: {
11 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
12 'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
13 },
14 },
15 },
16 plugins: [],
17};