1
0
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:
Kamran Ahmed
2023-01-26 19:55:36 +04:00
committed by GitHub
parent e3adcdaba4
commit ff16ea542f
49 changed files with 568 additions and 51 deletions

View File

@@ -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')],
};