mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-12-13 03:06:23 +00:00
16 lines
270 B
JavaScript
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;
|