This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Homework.app/tailwind.config.js

12 lines
185 B
JavaScript
Raw Permalink Normal View History

2022-04-02 16:47:03 -03:00
module.exports = {
2022-04-08 20:27:29 -03:00
darkMode: 'class',
2022-04-02 16:47:03 -03:00
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {},
},
plugins: [],
}