Files
estimation-flow/next.config.js
T

25 lines
412 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
output: 'standalone',
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'placehold.co',
port: '',
pathname: '/**',
},
],
},
};
module.exports = nextConfig;