Init(Coore): add to repo

This commit is contained in:
2026-04-24 16:20:36 +03:30
commit 893cdcb89c
91 changed files with 13751 additions and 0 deletions

28
next.config.js Executable file
View File

@@ -0,0 +1,28 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'axicon-portal.iran.liara.run',
port: '',
pathname: '/**',
},
{
protocol: 'http',
hostname: 'localhost',
port: '8000',
pathname: '/**',
},
{
protocol: 'https',
hostname: process.env.NEXT_PUBLIC_IMAGE_HOSTNAME || '',
port: '',
pathname: '/**',
},
],
},
}
module.exports = nextConfig