BaseTracker/frontend/next.config.js
2025-10-09 09:16:31 +02:00

15 lines
266 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'http',
hostname: 'localhost',
port: '4100',
pathname: '/uploads/**'
}
],
},
};
export default nextConfig;