initial scaffold

This commit is contained in:
Your Name 2025-06-25 14:01:52 +00:00
commit 3696b98582
55 changed files with 14360 additions and 0 deletions

23
next.config.ts Normal file
View file

@ -0,0 +1,23 @@
import type {NextConfig} from 'next';
const nextConfig: NextConfig = {
/* config options here */
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'placehold.co',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;