2026-05-07 20:04:31 +00:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-06-16 15:27:27 +00:00
|
|
|
// Gera .next/standalone com só o necessário — imagem Docker bem menor e
|
|
|
|
|
// deploy mais rápido (não precisa instalar node_modules no runtime).
|
|
|
|
|
output: 'standalone',
|
2026-05-07 20:04:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|