werkzeugkiste/frontend/next.config.ts

10 lines
185 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
env: {
backend_url: "http://localhost:4000",
},
};
export default nextConfig;