- Set up Next.js 15 with TypeScript and Tailwind CSS v4 - Configured responsive layout with header, sidebar, and main content area - Implemented directory scan modal with real-time validation - Added reusable Button component with primary/secondary variants - Created API endpoint for server-side directory validation - Integrated Tabler icons for UI feedback - Configured PostCSS with @tailwindcss/postcss for proper styling 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
269 B
JavaScript
10 lines
269 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
formats: ['image/webp', 'image/avif'],
|
|
deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
|
|
imageSizes: [16, 32, 48, 64, 96, 128, 256, 384],
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig |