Sistema completo de gestão de PDI com: - Autenticação com email/senha e Google OAuth - Workspaces privados isolados - Sistema de convites com código único - Interface profissional com Next.js 14 - Backend NestJS com PostgreSQL - Docker com Nginx e SSL Desenvolvido por Sergio Correa
14 lines
273 B
JavaScript
14 lines
273 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
reactStrictMode: true,
|
|
webpack: (config, { isServer }) => {
|
|
if (isServer) {
|
|
config.externals.push('_http_common')
|
|
}
|
|
return config
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|