Files
Scraperr/next.config.mjs
2024-07-06 22:40:47 -05:00

16 lines
270 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
distDir: "./dist",
async rewrites() {
return [
{
source: "/auth/:path*",
destination: "/api/auth/:path*",
},
];
},
};
export default nextConfig;