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