mirror of
https://github.com/typicode/json-server.git
synced 2025-07-25 11:12:22 +08:00
9 lines
185 B
JavaScript
9 lines
185 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./views/**/*.{html,js}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
}
|