Initial commit: tinovisas (visa management app)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
/** @type {import(next).NextConfig} */
|
||||
const nextConfig = {
|
||||
output: "standalone",
|
||||
images: { unoptimized: true },
|
||||
async rewrites() {
|
||||
return [
|
||||
{
|
||||
source: "/api/:path*",
|
||||
destination: "http://backend:4000/api/:path*"
|
||||
}
|
||||
];
|
||||
}
|
||||
};
|
||||
module.exports = nextConfig;
|
||||
Reference in New Issue
Block a user