mirror of
https://github.com/netbirdio/dashboard.git
synced 2026-05-22 17:05:00 -07:00
16 lines
346 B
JavaScript
16 lines
346 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
reactStrictMode: false,
|
|
env: {
|
|
APP_ENV: process.env.APP_ENV || "production",
|
|
NEXT_PUBLIC_DASHBOARD_VERSION:
|
|
process.env.NEXT_PUBLIC_DASHBOARD_VERSION || "development",
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|