2023-08-17 00:22:44 +02:00
|
|
|
import { join } from 'path'
|
|
|
|
import forms from '@tailwindcss/forms'
|
|
|
|
import typography from '@tailwindcss/typography'
|
|
|
|
import skeleton from '@skeletonlabs/skeleton/tailwind/skeleton.cjs'
|
|
|
|
|
2023-03-18 18:07:38 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
darkMode: 'class',
|
2023-08-17 00:22:44 +02:00
|
|
|
content: ['./src/**/*.{html,js,svelte,ts}', join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')],
|
2023-03-18 18:07:38 +01:00
|
|
|
theme: {
|
2023-08-17 00:22:44 +02:00
|
|
|
extend: {},
|
2023-03-18 18:07:38 +01:00
|
|
|
},
|
2023-08-17 00:22:44 +02:00
|
|
|
plugins: [forms,typography,...skeleton()],
|
|
|
|
}
|