Add layout for Markdown files

This commit is contained in:
Lucàs
2023-06-26 23:56:14 +02:00
parent f054e8cf77
commit a4a0a6f901
6 changed files with 31 additions and 10 deletions
+8 -6
View File
@@ -1,8 +1,10 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
}
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
};