xmr-remote-nodes/frontend/tailwind.config.js

24 lines
451 B
JavaScript
Raw Normal View History

import { join } from 'path';
import { skeleton } from '@skeletonlabs/tw-plugin';
import forms from '@tailwindcss/forms';
/** @type {import('tailwindcss').Config} */
export default {
2024-05-28 03:03:29 +00:00
darkMode: 'class',
content: [
'./src/**/*.{html,js,svelte,ts}',
join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')
],
theme: {
extend: {}
},
plugins: [
2024-05-28 03:03:29 +00:00
forms,
skeleton({
themes: {
preset: ['skeleton']
}
})
]
};