Files
SigHej/admin/next.config.js

10 lines
194 B
JavaScript
Raw Permalink Normal View History

2026-05-12 18:21:25 +02:00
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
env: {
API_URL: process.env.API_URL ?? "http://localhost:8000",
},
};
module.exports = nextConfig;