16 lines
431 B
TypeScript
16 lines
431 B
TypeScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
reactStrictMode: true,
|
|
poweredByHeader: false,
|
|
compress: true,
|
|
|
|
// Desativa ESLint e TypeScript durante o build de produção
|
|
eslint: { ignoreDuringBuilds: true },
|
|
typescript: { ignoreBuildErrors: true },
|
|
|
|
// Força runtime Node.js (para evitar Edge Runtime)
|
|
experimental: { runtime: 'nodejs' },
|
|
};
|
|
|
|
module.exports = nextConfig;
|