mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-21 16:41:24 +02:00
Add content to Frontend Best Practices (#3358)
* Add content to Frontend Best Practices * Add content to frontend performance best practices
This commit is contained in:
@@ -1,11 +1,20 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,svg}"],
|
||||
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,svg}'],
|
||||
theme: {
|
||||
extend: {},
|
||||
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")],
|
||||
plugins: [require('@tailwindcss/typography')],
|
||||
};
|
||||
|
Reference in New Issue
Block a user