mirror of
https://github.com/FoxxMD/multi-scrobbler.git
synced 2026-05-02 05:31:56 +00:00
14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
"index.html"
|
|
],
|
|
theme: {
|
|
container: {
|
|
padding: '1rem',
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|