Files
postshop-frontend/next.config.ts
2025-12-18 23:19:45 +05:00

23 lines
447 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: "http",
hostname: "shop.post.tm",
port: "8080",
},
],
},
}
export default withNextIntl(nextConfig)