10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
env: {
|
|
API_URL: process.env.API_URL ?? "http://localhost:8000",
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|