mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-11-16 17:07:36 +00:00
23 lines
451 B
JavaScript
23 lines
451 B
JavaScript
import { join } from 'path';
|
|
import { skeleton } from '@skeletonlabs/tw-plugin';
|
|
import forms from '@tailwindcss/forms';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./src/**/*.{html,js,svelte,ts}',
|
|
join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [
|
|
forms,
|
|
skeleton({
|
|
themes: {
|
|
preset: ['skeleton']
|
|
}
|
|
})
|
|
]
|
|
};
|