mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
11 lines
180 B
JavaScript
Vendored
11 lines
180 B
JavaScript
Vendored
/** @type {import('tailwindcss').Config} */
|
|
const config = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
module.exports = config;
|