mirror of
https://github.com/LukeHagar/sveltekit-extension-template.git
synced 2025-12-06 04:21:37 +00:00
18 lines
425 B
TypeScript
18 lines
425 B
TypeScript
import { join } from 'path';
|
|
import type { Config } from 'tailwindcss';
|
|
import { skeleton } from '@skeletonlabs/tw-plugin';
|
|
|
|
const config = {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./src/**/*.{html,js,svelte,ts}',
|
|
join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: [skeleton({ themes: { preset: ['skeleton'] } })]
|
|
} satisfies Config;
|
|
|
|
export default config;
|