website/next.config.js

15 lines
272 B
JavaScript
Raw Permalink Normal View History

2023-11-26 21:08:28 +07:00
/** @type {import('next').NextConfig} */
2023-12-03 23:02:09 +07:00
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
}
]
2024-05-03 10:47:40 +07:00
},
output: "standalone"
2023-12-03 23:02:09 +07:00
};
2023-11-26 21:08:28 +07:00
2023-12-03 23:02:09 +07:00
module.exports = nextConfig;