Initial commit: Tapalka monorepo (bot, front, strapi)

This commit is contained in:
2026-05-21 11:54:44 +07:00
commit 9ec9485940
208 changed files with 58314 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
hostname: 'strapi.rbx-click.ru'
},
{
protocol: 'http',
hostname: '127.0.0.1'
},
{
protocol: 'http',
hostname: 'localhost'
}
]
},
async rewrites() {
return [
{
source: '/uploads/:path*',
destination: 'http://127.0.0.1:1337/uploads/:path*',
},
];
},
};
export default nextConfig;