live-photo/next.config.js
2025-08-01 15:41:44 +08:00

16 lines
288 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ['localhost'],
},
async rewrites() {
return [
{
source: '/socket.io',
destination: 'http://localhost:3001/socket.io',
},
];
},
};
module.exports = nextConfig;