mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-11-16 17:07:36 +00:00
24 lines
454 B
JavaScript
24 lines
454 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']
|
||
|
}
|
||
|
})
|
||
|
]
|
||
|
};
|