kgroad-frontend2/next.config.mjs

15 lines
227 B
JavaScript
Raw Normal View History

2024-01-19 08:10:01 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
distDir: "build",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
};
2024-01-19 08:10:01 +00:00
export default nextConfig;