mirror of
https://github.com/blackboxprogramming/blackroad-apps.git
synced 2026-03-17 06:57:10 -05:00
All published on BlackRoad OS App Store: - Dashboard, Metrics, Vault, Agent Hub - Commander, Analytics, Monitor - Deployer, Studio, Sync - Plus the original First App Zero gatekeepers. Zero fees.
12 lines
244 B
JavaScript
12 lines
244 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
poweredByHeader: false,
|
|
compress: true,
|
|
env: {
|
|
DEPLOYMENT_TARGET: process.env.DEPLOYMENT_TARGET || 'production'
|
|
}
|
|
}
|
|
|
|
module.exports = nextConfig
|