- Added Tailwind CSS configuration and styles to the project. - Created a button component with multiple variants and sizes. - Implemented utility functions for class name management. - Updated layout and design pages to utilize the new button component. - Configured VSCode settings for Tailwind CSS support. - Added PostCSS configuration for Tailwind CSS processing. - Established a pnpm workspace for dependency management.
22 lines
395 B
JavaScript
22 lines
395 B
JavaScript
import adapter from '@sveltejs/adapter-cloudflare';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
kit: {
|
|
adapter: adapter({
|
|
routes: {
|
|
include: ['/*'],
|
|
exclude: ['<all>']
|
|
},
|
|
alias: {
|
|
"@/*": "./src/lib/*",
|
|
},
|
|
})
|
|
}
|
|
};
|
|
|
|
export default config;
|
|
|