diff options
author | Matt Strapp <matt@mattstrapp.net> | 2023-09-29 10:11:33 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2023-09-29 10:11:33 -0500 |
commit | 11ece69e006b446b9ca4e06eb5af5662bc811469 (patch) | |
tree | 29dbb0b4b88aa9eae29d80f5ebc08b8f710f51f8 /app/tailwind.config.ts | |
parent | Update dep + fix build (diff) | |
download | trinkets-11ece69e006b446b9ca4e06eb5af5662bc811469.tar trinkets-11ece69e006b446b9ca4e06eb5af5662bc811469.tar.gz trinkets-11ece69e006b446b9ca4e06eb5af5662bc811469.tar.bz2 trinkets-11ece69e006b446b9ca4e06eb5af5662bc811469.tar.lz trinkets-11ece69e006b446b9ca4e06eb5af5662bc811469.tar.xz trinkets-11ece69e006b446b9ca4e06eb5af5662bc811469.tar.zst trinkets-11ece69e006b446b9ca4e06eb5af5662bc811469.zip |
Formatting
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
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 |