mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
import type { NextConfig } from "next";
|
|
import dotenv from "dotenv";
|
|
|
|
dotenv.config({ path: "../.env" });
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
env: {
|
|
backend_url: process.env.NEXT_PUBLIC_BACKEND_URL,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|