Files
dashboard/next.config.js
2024-05-08 14:42:04 +02:00

14 lines
245 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
images: {
unoptimized: true,
},
reactStrictMode: false,
env: {
APP_ENV: process.env.APP_ENV || "production",
},
};
module.exports = nextConfig;