feat: add Tailwind CSS and Skeleton UI integration, implement authentication flow, and configure API requests

This commit is contained in:
ethan.chen
2025-05-19 18:25:20 +08:00
parent 803f0d93ed
commit 811ed03a05
9 changed files with 1899 additions and 62 deletions

8
tailwind.config.js Normal file
View File

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