mirror of
https://github.com/blackboxprogramming/blackroad-apps.git
synced 2026-03-17 07:57:18 -05:00
Co-authored-by: blackboxprogramming <118287761+blackboxprogramming@users.noreply.github.com>
13 lines
268 B
JavaScript
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
|