33 lines
609 B
TypeScript
33 lines
609 B
TypeScript
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: '/**',
|
|
},
|
|
],
|
|
},
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '50mb',
|
|
allowedOrigins: [
|
|
"https://weexnes.dev",
|
|
"https://weexnes.dev:6837",
|
|
"https://cdn.weexnes.dev"
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|