turkmentv_front/next.config.js

36 lines
755 B
JavaScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2025-01-05 19:17:39 +00:00
output: "standalone",
reactStrictMode: false,
2024-08-19 12:44:56 +00:00
images: {
2025-01-05 19:17:39 +00:00
domains: ["turkmentv.gov.tm", "smstv.gov.tm", "turkmenistaninfo.gov.tm"],
2024-08-19 12:44:56 +00:00
remotePatterns: [
{
2025-01-05 19:17:39 +00:00
protocol: "https",
hostname: "turkmentv.gov.tm",
port: "",
2024-08-19 12:44:56 +00:00
// pathname: '/account123/**',
},
{
2025-01-05 19:17:39 +00:00
protocol: "https",
hostname: "sms.turkmentv.gov.tm",
port: "",
// pathname: '/account123/**',
},
2024-08-19 12:44:56 +00:00
{
2025-01-05 19:17:39 +00:00
protocol: "https",
hostname: "smstv.gov.tm",
port: "",
2024-08-19 12:44:56 +00:00
},
{
2025-01-05 19:17:39 +00:00
protocol: "https",
hostname: "turkmenistaninfo.gov.tm",
port: "",
2024-08-19 12:44:56 +00:00
},
],
},
};
module.exports = nextConfig;