generated from erangel1/generic-template
16 lines
316 B
JavaScript
16 lines
316 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const DJANGO_URL = process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:8000";
|
|
|
|
const nextConfig = {
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: "/backend/:path*",
|
|
destination: `${DJANGO_URL}/:path*`,
|
|
},
|
|
];
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|