Upload files to "/"

Upload from Github
This commit is contained in:
2025-10-21 01:22:24 +00:00
parent 5796a823b9
commit e94eb9249c
5 changed files with 109 additions and 5 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: 'picsum.photos',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;