Files
json-server/tailwind.config.js
2023-12-01 15:46:01 +01:00

11 lines
194 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./views/**/*.{html,js}'],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
],
}