first commit

This commit is contained in:
Jelaletdin12
2026-02-01 20:55:57 +05:00
commit b8c871750a
128 changed files with 23114 additions and 0 deletions

22
next.config.ts Normal file
View File

@@ -0,0 +1,22 @@
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: "http",
hostname: "shop.post.tm",
// port: "8080",
},
],
},
}
export default withNextIntl(nextConfig)