Files
octto-engenharia/frontend/next.config.ts

17 lines
338 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{ protocol: 'http', hostname: 'localhost' },
{ protocol: 'https', hostname: 'images.unsplash.com' },
],
},
typescript: {
ignoreBuildErrors: true,
},
};
export default nextConfig;