Projects
-
See the {archived ? 'archived' : ''} Project here
-
On {date.toFormat('MMMM dd, yyyy')}
diff --git a/tailwind.config.ts b/tailwind.config.ts deleted file mode 100644 index b276d02..0000000 --- a/tailwind.config.ts +++ /dev/null @@ -1,21 +0,0 @@ -import forms from '@tailwindcss/forms'; -import typography from '@tailwindcss/typography'; -import type { Config } from 'tailwindcss'; - -import { skeleton, contentPath } from '@skeletonlabs/skeleton/plugin'; -import * as themes from '@skeletonlabs/skeleton/themes'; - -export default { - content: ['./src/**/*.{html,js,svelte,ts}', contentPath(import.meta.url, 'svelte')], - theme: { - extend: {} - }, - - plugins: [ - typography, - forms, - skeleton({ - themes: [themes.rose] - }) - ] -} satisfies Config; diff --git a/vite.config.ts b/vite.config.ts index bbf8c7d..fc5136f 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,6 +1,7 @@ import { sveltekit } from '@sveltejs/kit/vite'; import { defineConfig } from 'vite'; +import tailwind from '@tailwindcss/vite'; export default defineConfig({ - plugins: [sveltekit()] + plugins: [sveltekit(), tailwind()] });