Files
postshop-frontend/next.config.ts
2026-02-05 16:38:39 +05:00

23 lines
450 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: "https",
hostname: "hyzmat.app",
// port: "8080",
},
],
},
}
export default withNextIntl(nextConfig)