Files
smart-electronics-frontend/next.config.ts
@jcarymuhammedow f32e7538e1 fixed some bugs
2026-02-05 19:36:12 +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)