Files
blackroad-operating-system/apps/prism-console/next.config.mjs
2025-11-21 00:18:26 -06:00

13 lines
238 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
experimental: {
appDir: true
},
env: {
API_URL: process.env.API_URL || "https://api.blackroad.systems"
}
};
export default nextConfig;