mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-19 21:25:39 +00:00
12 lines
184 B
JavaScript
12 lines
184 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: [
|
||
|
"./index.html",
|
||
|
"./src/**/*.{js,ts,jsx,tsx}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|