Files
postshop-frontend/next.config.ts
2025-11-22 20:59:28 +05:00

22 lines
426 B
TypeScript

import type { NextConfig } from "next"
import createNextIntlPlugin from "next-intl/plugin"
const withNextIntl = createNextIntlPlugin("./i18n/i18n.ts")
const nextConfig: NextConfig = {
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
remotePatterns: [
{
protocol: "https",
hostname: "shop.post.tm",
},
],
},
}
export default withNextIntl(nextConfig)