mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 01:27:54 +00:00
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
env: {
|
|
backend_url: process.env.BACKEND_URL || "http://localhost:4000",
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|