23 lines
450 B
TypeScript
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: true,
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
remotePatterns: [
|
|
{
|
|
protocol: "http",
|
|
hostname: "shop.post.tm",
|
|
// port: "8080",
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
export default withNextIntl(nextConfig)
|