2024-01-17 19:21:08 +00:00
|
|
|
import type { Config } from 'tailwindcss';
|
2024-01-16 18:33:45 +00:00
|
|
|
|
|
|
|
const config: Config = {
|
|
|
|
content: [
|
2024-01-17 19:21:08 +00:00
|
|
|
'./src/**/*.{js,ts,jsx,tsx,mdx}',
|
2024-01-16 18:33:45 +00:00
|
|
|
],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
backgroundImage: {
|
|
|
|
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
|
|
|
|
'gradient-conic':
|
|
|
|
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2024-01-18 00:09:36 +00:00
|
|
|
corePlugins: {
|
|
|
|
// This messes up the button styles for some reason, but only in production builds
|
|
|
|
preflight: false,
|
|
|
|
},
|
2024-01-16 18:33:45 +00:00
|
|
|
plugins: [],
|
2024-01-17 19:21:08 +00:00
|
|
|
};
|
|
|
|
export default config;
|