Files
postshop-frontend/next.config.ts
Jelaletdin12 21b9e88c5c added some api
2025-11-13 21:56:30 +05:00

25 lines
468 B
TypeScript

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