mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 17:11:21 +00:00
18 lines
406 B
JavaScript
18 lines
406 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./src/**/*.{html,js,svelte,ts}',
|
|
require('path').join(require.resolve(
|
|
'@skeletonlabs/skeleton'),
|
|
'../**/*.{html,js,svelte,ts}'
|
|
)
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
...require('@skeletonlabs/skeleton/tailwind/skeleton.cjs')()
|
|
]
|
|
}
|