Full Next.js storefront with Square catalog integration, balloon color picker, delivery/pickup slot booking, CalDAV calendar sync, and admin panel. Admin features: item overrides, category display order/visibility, hours editor, holiday/occasion windows, quantity units, and modifier deselect. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
336 B
JavaScript
16 lines
336 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: 'https', hostname: '**.squarecdn.com' },
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'items-images-production.s3.us-west-2.amazonaws.com',
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|