diff options
Diffstat (limited to '')
-rw-r--r-- | app/tailwind.config.ts | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/app/tailwind.config.ts b/app/tailwind.config.ts index 5bb3fde..d87e5b6 100644 --- a/app/tailwind.config.ts +++ b/app/tailwind.config.ts @@ -1,17 +1,17 @@ -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 { join } from 'path' +import type { Config } from 'tailwindcss' +import forms from '@tailwindcss/forms' +import typography from '@tailwindcss/typography' +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}') + join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}'), ], theme: { - extend: {} + extend: {}, }, plugins: [ forms, @@ -21,10 +21,10 @@ export default { preset: [ { name: 'wintry', - enhancements: true - } - ] - } - }) - ] -} satisfies Config; + enhancements: true, + }, + ], + }, + }), + ], +} satisfies Config |