comicbox/tailwind.config.js

15 lines
261 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
maxWidth: {
'1/2': '50%',
},
},
},
plugins: [],
}