21 lines
426 B
TypeScript
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);
|