kevos-attire/frontend/next.config.mjs

24 lines
375 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/backend/:path*',
destination: `http://192.168.50.107:5580/:path*`,
},
]
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "ih1.redbubble.net",
port: "",
pathname: "/**",
},
],
},
};
export default nextConfig;