17 lines
363 B
TypeScript
17 lines
363 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
distDir: "build",
|
|
output: "standalone",
|
|
rewrites: async () => {
|
|
return [
|
|
{
|
|
source: "/v1/submissions/1/status/:statustype",
|
|
destination: "http://localhost:8081/v1/submissions/:statustype"
|
|
}
|
|
]
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|