Files
blackroad-apps/roadmap/next.config.js
2026-03-06 02:28:24 +00:00

13 lines
268 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
poweredByHeader: false,
compress: true,
output: 'standalone',
env: {
DEPLOYMENT_TARGET: process.env.DEPLOYMENT_TARGET || 'production'
}
}
module.exports = nextConfig