Add TailwindCSS integration

This commit is contained in:
Sat Naing
2022-09-08 20:43:42 +06:30
parent 44cf5afeba
commit 3d1b24fc36
4 changed files with 735 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {},
},
plugins: [],
}