mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-01-17 22:28:32 +01:00
ff16ea542f
* Add content to Frontend Best Practices * Add content to frontend performance best practices
21 lines
504 B
JavaScript
21 lines
504 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,svg}'],
|
|
theme: {
|
|
extend: {
|
|
typography: {
|
|
quoteless: {
|
|
css: {
|
|
'blockquote p:first-of-type::before': { content: 'none' },
|
|
'blockquote p:first-of-type::after': { content: 'none' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
container: {
|
|
center: true,
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
};
|