16 lines
371 B
JavaScript
16 lines
371 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
import createNextIntlPlugin from 'next-intl/plugin';
|
|
const withNextIntl = createNextIntlPlugin();
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "storage.adhorizonintl.com",
|
|
}
|
|
],
|
|
},
|
|
};
|
|
|
|
export default withNextIntl(nextConfig);
|