Files
postshop-frontend/next.config.ts
Jelaletdin12 fdec9e4b0e first commit
2025-11-10 10:07:48 +05:00

20 lines
389 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,
},
/* config options here */
}
export default withNextIntl(nextConfig)