Migrated from svelte vite plugin to sveltekit

This commit is contained in:
2025-01-10 16:11:30 +00:00
parent c012c04729
commit d7e2e0f9f3
43 changed files with 133 additions and 62 deletions

12
tailwind.config.js Normal file
View File

@@ -0,0 +1,12 @@
import forms from '@tailwindcss/forms';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: [forms]
};