NYTimes-homepage-rearranged / client /tailwind.config.cjs
radames's picture
remove quotes
b23f1a7
raw
history blame
384 Bytes
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
typography: {
DEFAULT: {
css: {
'code::before': {
content: '""'
},
'code::after': {
content: '""'
}
}
}
},
},
},
plugins: [require('@tailwindcss/typography')]
};