storytelling-backup / frontend /next.config.mjs
lucy1118's picture
Upload 53 files
efc9173 verified
raw
history blame contribute delete
257 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
async rewrites() {
return [
{
source: "/:path*",
destination: "http://localhost:7860/:path*",
},
];
},
};
export default nextConfig;