Files
openccb/web/experience/next.config.mjs
T
2026-01-22 16:52:36 -03:00

17 lines
349 B
JavaScript

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