36 lines
755 B
JavaScript
36 lines
755 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "standalone",
|
|
reactStrictMode: false,
|
|
|
|
images: {
|
|
domains: ["turkmentv.gov.tm", "smstv.gov.tm", "turkmenistaninfo.gov.tm"],
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "turkmentv.gov.tm",
|
|
port: "",
|
|
// pathname: '/account123/**',
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "sms.turkmentv.gov.tm",
|
|
port: "",
|
|
// pathname: '/account123/**',
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "smstv.gov.tm",
|
|
port: "",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "turkmenistaninfo.gov.tm",
|
|
port: "",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|