async rewrites()

in radlab-ui/webapp/next.config.js [12:23]


  async rewrites() {
    return [
      {
        source: "/api/:path*",
        destination: "/api/:path*",
      },
      {
        source: "/:any*",
        destination: "/",
      },
    ]
  },