this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at blog 17 lines 471 B view raw
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};