From 319a10b9a106e768ea2d3fb6d7134817911208ce Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Wed, 13 Sep 2023 16:04:12 -0500 Subject: Add basic PWA support TODO: draw the rest of the owl --- app/tailwind.config.ts | 47 +++++++++++++++++++++++++---------------------- 1 file changed, 25 insertions(+), 22 deletions(-) (limited to 'app/tailwind.config.ts') diff --git a/app/tailwind.config.ts b/app/tailwind.config.ts index b40ad0e..57f3822 100644 --- a/app/tailwind.config.ts +++ b/app/tailwind.config.ts @@ -1,27 +1,30 @@ -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}')], - theme: { - extend: {}, - }, - plugins: [ - forms, - typography, - skeleton({ - themes: { - preset: [ - { - name: 'crimson', - enhancements: true, - }, - ], - }, - }), - ], + darkMode: 'class', + content: [ + './src/**/*.{html,js,svelte,ts}', + join(require.resolve('@skeletonlabs/skeleton'), '../**/*.{html,js,svelte,ts}') + ], + theme: { + extend: {} + }, + plugins: [ + forms, + typography, + skeleton({ + themes: { + preset: [ + { + name: 'crimson', + enhancements: true + } + ] + } + }) + ] } satisfies Config; -- cgit v1.2.3