17 lines
412 B
TypeScript
17 lines
412 B
TypeScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Gera build autônomo para rodar com "node server.js"
|
|
output: 'standalone',
|
|
|
|
// Configurações gerais
|
|
reactStrictMode: true,
|
|
poweredByHeader: false,
|
|
compress: true,
|
|
|
|
// Desativa verificações no build de produção
|
|
eslint: { ignoreDuringBuilds: true },
|
|
typescript: { ignoreBuildErrors: true },
|
|
|
|
};
|
|
|
|
module.exports = nextConfig;
|