mirror of
https://github.com/avinal/avinal.github.io.git
synced 2026-07-04 07:40:09 +05:30
921f5ee883
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
12 lines
239 B
JavaScript
12 lines
239 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{html,elm,js}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require("@tailwindcss/typography"),
|
|
require("@tailwindcss/aspect-ratio"),
|
|
],
|
|
};
|