website/next.config.js

14 lines
246 B
JavaScript
Raw 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: "**",
}
]
}
};
2023-11-26 21:08:28 +07:00
2023-12-03 23:02:09 +07:00
module.exports = nextConfig;