23 lines
473 B
TypeScript
23 lines
473 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,
|
|
},
|
|
// Desabilitar Turbopack no build (bug com middleware + standalone)
|
|
experimental: {
|
|
turbo: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|