Files
3d-configurator-landing/next.config.ts
T
2026-05-20 01:38:47 +02:00

21 lines
426 B
TypeScript

import createNextIntlPlugin from 'next-intl/plugin';
import type {NextConfig} from 'next';
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
reactStrictMode: true,
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'backend.ultifide.com',
pathname: '/uploads/**'
}
]
}
};
export default withNextIntl(nextConfig);