Files
postshop-frontend/next.config.ts
@jcarymuhammedow 071b45b98a fixed some errors
2026-01-08 18:01:17 +05:00

23 lines
451 B
TypeScript

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