diff options
Diffstat (limited to 'clients/www/tailwind.config.ts')
-rw-r--r-- | clients/www/tailwind.config.ts | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/clients/www/tailwind.config.ts b/clients/www/tailwind.config.ts index 9f08643..a776fd4 100644 --- a/clients/www/tailwind.config.ts +++ b/clients/www/tailwind.config.ts @@ -1,14 +1,17 @@ -import { join } from 'path' -import type { Config } from 'tailwindcss' +import { join } from 'path'; +import type { Config } from 'tailwindcss'; import forms from '@tailwindcss/forms'; import typography from '@tailwindcss/typography'; -import { skeleton } from '@skeletonlabs/tw-plugin' +import { skeleton } from '@skeletonlabs/tw-plugin'; export default { darkMode: 'class', - content: ['./src/**/*.{html,js,svelte,ts}', join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}')], + content: [ + './src/**/*.{html,js,svelte,ts}', + join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}') + ], theme: { - extend: {}, + extend: {} }, plugins: [ forms, @@ -18,10 +21,10 @@ export default { preset: [ { name: 'wintry', - enhancements: true, - }, - ], - }, - }), - ], + enhancements: true + } + ] + } + }) + ] } satisfies Config; |